mirror of
https://github.com/l1ving/youtube-dl
synced 2025-02-03 04:42:52 +08:00
[parliamentliveuk] Fix kaltura widget config detection
This commit is contained in:
parent
c2b3bd0451
commit
6c5e27a099
@ -1,5 +1,7 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from re import DOTALL
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
|
||||||
|
|
||||||
@ -29,7 +31,7 @@ class ParliamentLiveUKIE(InfoExtractor):
|
|||||||
'http://vodplayer.parliamentlive.tv/?mid=' + video_id, video_id)
|
'http://vodplayer.parliamentlive.tv/?mid=' + video_id, video_id)
|
||||||
widget_config = self._parse_json(self._search_regex(
|
widget_config = self._parse_json(self._search_regex(
|
||||||
r'(?s)kWidgetConfig\s*=\s*({.+});',
|
r'(?s)kWidgetConfig\s*=\s*({.+});',
|
||||||
webpage, 'kaltura widget config'), video_id)
|
webpage, 'kaltura widget config', flags=DOTALL), video_id)
|
||||||
kaltura_url = 'kaltura:%s:%s' % (
|
kaltura_url = 'kaltura:%s:%s' % (
|
||||||
widget_config['wid'][1:], widget_config['entry_id'])
|
widget_config['wid'][1:], widget_config['entry_id'])
|
||||||
event_title = self._download_json(
|
event_title = self._download_json(
|
||||||
|
Loading…
Reference in New Issue
Block a user