1 from __future__ import unicode_literals
5 from .common import InfoExtractor
12 class FoxNewsIE(InfoExtractor):
13 IE_DESC = 'Fox News and Fox Business Video'
14 _VALID_URL = r'https?://(?P<host>video\.fox(?:news|business)\.com)/v/(?:video-embed\.html\?video_id=)?(?P<id>\d+)'
17 'url': 'http://video.foxnews.com/v/3937480/frozen-in-time/#sp=show-clips',
18 'md5': '32aaded6ba3ef0d1c04e238d01031e5e',
22 'title': 'Frozen in Time',
23 'description': 'Doctors baffled by 16-year-old girl that is the size of a toddler',
25 'timestamp': 1304411491,
26 'upload_date': '20110503',
27 'thumbnail': 're:^https?://.*\.jpg$',
31 'url': 'http://video.foxnews.com/v/3922535568001/rep-luis-gutierrez-on-if-obamas-immigration-plan-is-legal/#sp=show-clips',
32 'md5': '5846c64a1ea05ec78175421b8323e2df',
34 'id': '3922535568001',
36 'title': "Rep. Luis Gutierrez on if Obama's immigration plan is legal",
37 'description': "Congressman discusses the president's executive action",
39 'timestamp': 1417662047,
40 'upload_date': '20141204',
41 'thumbnail': 're:^https?://.*\.jpg$',
45 'url': 'http://video.foxnews.com/v/video-embed.html?video_id=3937480&d=video.foxnews.com',
46 'only_matching': True,
49 'url': 'http://video.foxbusiness.com/v/4442309889001',
50 'only_matching': True,
54 def _real_extract(self, url):
55 mobj = re.match(self._VALID_URL, url)
56 video_id = mobj.group('id')
57 host = mobj.group('host')
59 video = self._download_json(
60 'http://%s/v/feed/video/%s.js?template=fox' % (host, video_id), video_id)
62 item = video['channel']['item']
64 description = item['description']
65 timestamp = parse_iso8601(item['dc-date'])
67 media_group = item['media-group']
70 for media in media_group['media-content']:
71 attributes = media['@attributes']
72 video_url = attributes['url']
73 if video_url.endswith('.f4m'):
74 formats.extend(self._extract_f4m_formats(video_url + '?hdcore=3.4.0&plugin=aasp-3.4.0.132.124', video_id))
75 elif video_url.endswith('.m3u8'):
76 formats.extend(self._extract_m3u8_formats(video_url, video_id, 'flv'))
77 elif not video_url.endswith('.smil'):
78 duration = int_or_none(attributes.get('duration'))
81 'format_id': media['media-category']['@attributes']['label'],
83 'vbr': int_or_none(attributes.get('bitrate')),
84 'filesize': int_or_none(attributes.get('fileSize'))
86 self._sort_formats(formats)
88 media_thumbnail = media_group['media-thumbnail']['@attributes']
90 'url': media_thumbnail['url'],
91 'width': int_or_none(media_thumbnail.get('width')),
92 'height': int_or_none(media_thumbnail.get('height')),
93 }] if media_thumbnail else []
98 'description': description,
100 'timestamp': timestamp,
102 'thumbnails': thumbnails,