yt-dlc/youtube_dl/extractor/foxnews.py

57 lines
2.0 KiB
Python
Raw Normal View History

2014-12-04 15:19:08 +00:00
from __future__ import unicode_literals
2015-08-27 15:24:13 +00:00
import re
from .amp import AMPIE
2014-12-04 15:19:08 +00:00
class FoxNewsIE(AMPIE):
2015-08-27 15:48:47 +00:00
IE_DESC = 'Fox News and Fox Business Video'
2015-08-27 15:48:03 +00:00
_VALID_URL = r'https?://(?P<host>video\.fox(?:news|business)\.com)/v/(?:video-embed\.html\?video_id=)?(?P<id>\d+)'
2014-12-04 15:19:08 +00:00
_TESTS = [
{
'url': 'http://video.foxnews.com/v/3937480/frozen-in-time/#sp=show-clips',
'md5': '32aaded6ba3ef0d1c04e238d01031e5e',
'info_dict': {
'id': '3937480',
'ext': 'flv',
'title': 'Frozen in Time',
'description': '16-year-old girl is size of toddler',
2014-12-04 15:19:08 +00:00
'duration': 265,
# 'timestamp': 1304411491,
# 'upload_date': '20110503',
2014-12-04 15:19:08 +00:00
'thumbnail': 're:^https?://.*\.jpg$',
},
},
{
'url': 'http://video.foxnews.com/v/3922535568001/rep-luis-gutierrez-on-if-obamas-immigration-plan-is-legal/#sp=show-clips',
'md5': '5846c64a1ea05ec78175421b8323e2df',
'info_dict': {
'id': '3922535568001',
'ext': 'mp4',
'title': "Rep. Luis Gutierrez on if Obama's immigration plan is legal",
'description': "Congressman discusses president's plan",
2014-12-04 15:19:08 +00:00
'duration': 292,
# 'timestamp': 1417662047,
# 'upload_date': '20141204',
2014-12-04 15:19:08 +00:00
'thumbnail': 're:^https?://.*\.jpg$',
},
},
{
'url': 'http://video.foxnews.com/v/video-embed.html?video_id=3937480&d=video.foxnews.com',
'only_matching': True,
},
2015-08-27 15:24:28 +00:00
{
'url': 'http://video.foxbusiness.com/v/4442309889001',
'only_matching': True,
},
2014-12-04 15:19:08 +00:00
]
def _real_extract(self, url):
host, video_id = re.match(self._VALID_URL, url).groups()
2015-08-27 15:24:13 +00:00
info = self._extract_feed_info(
'http://%s/v/feed/video/%s.js?template=fox' % (host, video_id))
info['id'] = video_id
return info