mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-10 19:41:20 +00:00
[parliamentliveuk] Fix extraction (closes #14524)
This commit is contained in:
parent
a26a3c6d34
commit
fc5c47d13c
1 changed files with 4 additions and 4 deletions
|
@ -11,7 +11,7 @@ class ParliamentLiveUKIE(InfoExtractor):
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://parliamentlive.tv/Event/Index/c1e9d44d-fd6c-4263-b50f-97ed26cc998b',
|
'url': 'http://parliamentlive.tv/Event/Index/c1e9d44d-fd6c-4263-b50f-97ed26cc998b',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': 'c1e9d44d-fd6c-4263-b50f-97ed26cc998b',
|
'id': '1_af9nv9ym',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'Home Affairs Committee',
|
'title': 'Home Affairs Committee',
|
||||||
'uploader_id': 'FFMPEG-01',
|
'uploader_id': 'FFMPEG-01',
|
||||||
|
@ -28,14 +28,14 @@ class ParliamentLiveUKIE(InfoExtractor):
|
||||||
webpage = self._download_webpage(
|
webpage = self._download_webpage(
|
||||||
'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'kWidgetConfig\s*=\s*({.+});',
|
r'(?s)kWidgetConfig\s*=\s*({.+});',
|
||||||
webpage, 'kaltura widget config'), video_id)
|
webpage, 'kaltura widget config'), video_id)
|
||||||
kaltura_url = 'kaltura:%s:%s' % (widget_config['wid'][1:], widget_config['entry_id'])
|
kaltura_url = 'kaltura:%s:%s' % (
|
||||||
|
widget_config['wid'][1:], widget_config['entry_id'])
|
||||||
event_title = self._download_json(
|
event_title = self._download_json(
|
||||||
'http://parliamentlive.tv/Event/GetShareVideo/' + video_id, video_id)['event']['title']
|
'http://parliamentlive.tv/Event/GetShareVideo/' + video_id, video_id)['event']['title']
|
||||||
return {
|
return {
|
||||||
'_type': 'url_transparent',
|
'_type': 'url_transparent',
|
||||||
'id': video_id,
|
|
||||||
'title': event_title,
|
'title': event_title,
|
||||||
'description': '',
|
'description': '',
|
||||||
'url': kaltura_url,
|
'url': kaltura_url,
|
||||||
|
|
Loading…
Reference in a new issue