2015-08-27 15:24:13 +00:00
|
|
|
import re
|
|
|
|
|
2015-11-07 15:54:35 +00:00
|
|
|
from .amp import AMPIE
|
2016-09-03 10:16:19 +00:00
|
|
|
from .common import InfoExtractor
|
2014-12-04 15:19:08 +00:00
|
|
|
|
|
|
|
|
2016-09-11 10:53:05 +00:00
|
|
|
class FoxNewsIE(AMPIE):
|
|
|
|
IE_NAME = 'foxnews'
|
2015-08-27 15:48:47 +00:00
|
|
|
IE_DESC = 'Fox News and Fox Business Video'
|
2016-09-03 10:16:19 +00:00
|
|
|
_VALID_URL = r'https?://(?P<host>video\.(?:insider\.)?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',
|
2015-11-07 15:54:35 +00:00
|
|
|
'description': '16-year-old girl is size of toddler',
|
2014-12-04 15:19:08 +00:00
|
|
|
'duration': 265,
|
2016-03-27 19:14:12 +00:00
|
|
|
'timestamp': 1304411491,
|
|
|
|
'upload_date': '20110503',
|
2017-01-02 12:08:07 +00:00
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
2014-12-04 15:19:08 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'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",
|
2015-11-07 15:54:35 +00:00
|
|
|
'description': "Congressman discusses president's plan",
|
2014-12-04 15:19:08 +00:00
|
|
|
'duration': 292,
|
2016-03-27 19:14:12 +00:00
|
|
|
'timestamp': 1417662047,
|
|
|
|
'upload_date': '20141204',
|
2017-01-02 12:08:07 +00:00
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
2014-12-04 15:19:08 +00:00
|
|
|
},
|
2016-03-04 20:42:04 +00:00
|
|
|
'params': {
|
|
|
|
# m3u8 download
|
|
|
|
'skip_download': True,
|
|
|
|
},
|
2014-12-04 15:19:08 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'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,
|
|
|
|
},
|
2016-09-03 10:16:19 +00:00
|
|
|
{
|
|
|
|
# From http://insider.foxnews.com/2016/08/25/univ-wisconsin-student-group-pushing-silence-certain-words
|
|
|
|
'url': 'http://video.insider.foxnews.com/v/video-embed.html?video_id=5099377331001&autoplay=true&share_url=http://insider.foxnews.com/2016/08/25/univ-wisconsin-student-group-pushing-silence-certain-words&share_title=Student%20Group:%20Saying%20%27Politically%20Correct,%27%20%27Trash%27%20and%20%27Lame%27%20Is%20Offensive&share=true',
|
|
|
|
'only_matching': True,
|
|
|
|
},
|
2014-12-04 15:19:08 +00:00
|
|
|
]
|
|
|
|
|
2022-08-01 01:23:25 +00:00
|
|
|
@classmethod
|
|
|
|
def _extract_embed_urls(cls, url, webpage):
|
2022-08-06 21:59:19 +00:00
|
|
|
for mobj in re.finditer(
|
2022-06-19 13:13:47 +00:00
|
|
|
r'''(?x)
|
|
|
|
<(?:script|(?:amp-)?iframe)[^>]+\bsrc=["\']
|
|
|
|
(?:https?:)?//video\.foxnews\.com/v/(?:video-embed\.html|embed\.js)\?
|
|
|
|
(?:[^>"\']+&)?(?:video_)?id=(?P<video_id>\d+)
|
2022-08-06 21:59:19 +00:00
|
|
|
''', webpage):
|
|
|
|
yield f'https://video.foxnews.com/v/video-embed.html?video_id={mobj.group("video_id")}'
|
2018-06-20 16:51:14 +00:00
|
|
|
|
2014-12-04 15:19:08 +00:00
|
|
|
def _real_extract(self, url):
|
2021-08-19 01:41:24 +00:00
|
|
|
host, video_id = self._match_valid_url(url).groups()
|
2015-08-27 15:24:13 +00:00
|
|
|
|
2015-12-21 10:12:58 +00:00
|
|
|
info = self._extract_feed_info(
|
|
|
|
'http://%s/v/feed/video/%s.js?template=fox' % (host, video_id))
|
2015-11-07 15:54:35 +00:00
|
|
|
info['id'] = video_id
|
|
|
|
return info
|
2016-09-03 10:16:19 +00:00
|
|
|
|
|
|
|
|
2022-11-06 21:29:53 +00:00
|
|
|
class FoxNewsVideoIE(InfoExtractor):
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?foxnews\.com/video/(?P<id>\d+)'
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://www.foxnews.com/video/6313058664112',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '6313058664112',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'thumbnail': r're:https://.+/1280x720/match/image\.jpg',
|
|
|
|
'upload_date': '20220930',
|
|
|
|
'description': 'New York City, Kids Therapy, Biden',
|
|
|
|
'duration': 2415,
|
|
|
|
'title': 'Gutfeld! - Thursday, September 29',
|
|
|
|
'timestamp': 1664527538,
|
|
|
|
},
|
|
|
|
'expected_warnings': ['Ignoring subtitle tracks'],
|
|
|
|
'params': {'skip_download': 'm3u8'},
|
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
video_id = self._match_id(url)
|
|
|
|
return self.url_result(f'https://video.foxnews.com/v/{video_id}', FoxNewsIE, video_id)
|
|
|
|
|
|
|
|
|
2016-09-11 10:53:05 +00:00
|
|
|
class FoxNewsArticleIE(InfoExtractor):
|
2018-06-20 16:59:37 +00:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?(?:insider\.)?foxnews\.com/(?!v)([^/]+/)+(?P<id>[a-z-]+)'
|
2016-09-11 10:53:05 +00:00
|
|
|
IE_NAME = 'foxnews:article'
|
2016-09-11 10:32:45 +00:00
|
|
|
|
2018-06-20 16:51:14 +00:00
|
|
|
_TESTS = [{
|
|
|
|
# data-video-id
|
2016-09-11 10:32:45 +00:00
|
|
|
'url': 'http://www.foxnews.com/politics/2016/09/08/buzz-about-bud-clinton-camp-denies-claims-wore-earpiece-at-forum.html',
|
2018-06-20 16:51:14 +00:00
|
|
|
'md5': '83d44e1aff1433e7a29a7b537d1700b5',
|
2016-09-11 10:32:45 +00:00
|
|
|
'info_dict': {
|
|
|
|
'id': '5116295019001',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Trump and Clinton asked to defend positions on Iraq War',
|
|
|
|
'description': 'Veterans react on \'The Kelly File\'',
|
2018-06-20 16:51:14 +00:00
|
|
|
'timestamp': 1473301045,
|
2016-09-11 10:32:45 +00:00
|
|
|
'upload_date': '20160908',
|
|
|
|
},
|
2018-06-20 16:51:14 +00:00
|
|
|
}, {
|
|
|
|
# iframe embed
|
|
|
|
'url': 'http://www.foxnews.com/us/2018/03/09/parkland-survivor-kyle-kashuv-on-meeting-trump-his-app-to-prevent-another-school-shooting.amp.html?__twitter_impression=true',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '5748266721001',
|
|
|
|
'ext': 'flv',
|
|
|
|
'title': 'Kyle Kashuv has a positive message for the Trump White House',
|
|
|
|
'description': 'Marjory Stoneman Douglas student disagrees with classmates.',
|
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
|
|
|
'duration': 229,
|
|
|
|
'timestamp': 1520594670,
|
|
|
|
'upload_date': '20180309',
|
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': True,
|
|
|
|
},
|
2018-06-20 16:59:37 +00:00
|
|
|
}, {
|
|
|
|
'url': 'http://insider.foxnews.com/2016/08/25/univ-wisconsin-student-group-pushing-silence-certain-words',
|
|
|
|
'only_matching': True,
|
2018-06-20 16:51:14 +00:00
|
|
|
}]
|
2016-09-11 10:32:45 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
display_id = self._match_id(url)
|
|
|
|
webpage = self._download_webpage(url, display_id)
|
|
|
|
|
|
|
|
video_id = self._html_search_regex(
|
|
|
|
r'data-video-id=([\'"])(?P<id>[^\'"]+)\1',
|
2018-06-20 16:51:14 +00:00
|
|
|
webpage, 'video ID', group='id', default=None)
|
|
|
|
if video_id:
|
|
|
|
return self.url_result(
|
|
|
|
'http://video.foxnews.com/v/' + video_id, FoxNewsIE.ie_key())
|
|
|
|
|
2016-09-11 10:32:45 +00:00
|
|
|
return self.url_result(
|
2022-08-06 21:59:19 +00:00
|
|
|
next(FoxNewsIE._extract_embed_urls(url, webpage)), FoxNewsIE.ie_key())
|