mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-23 15:51:24 +01:00
Compare commits
5 Commits
a1dfcc166e
...
191507d0d7
Author | SHA1 | Date | |
---|---|---|---|
|
191507d0d7 | ||
|
8cbf4659bd | ||
|
0bfcbc79b6 | ||
|
d07eb72f6f | ||
|
734d7bd4a3 |
|
@ -7,17 +7,19 @@ from ..networking.exceptions import HTTPError
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
int_or_none,
|
int_or_none,
|
||||||
|
join_nonempty,
|
||||||
parse_age_limit,
|
parse_age_limit,
|
||||||
parse_duration,
|
parse_duration,
|
||||||
traverse_obj,
|
traverse_obj,
|
||||||
try_get,
|
try_get,
|
||||||
unified_timestamp,
|
unified_timestamp,
|
||||||
url_or_none,
|
url_or_none,
|
||||||
|
urljoin,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class FOXIE(InfoExtractor):
|
class FOXIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?fox(?:sports)?\.com/(?:watch|replay)/(?P<id>[\da-fA-F]+)'
|
_VALID_URL = r'https?://(?:www\.)?fox(?:sports)?\.com/(?:watch|replay)/(?!play-)(?P<id>[\w-]+)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
# clip
|
# clip
|
||||||
'url': 'https://www.fox.com/watch/4b765a60490325103ea69888fb2bd4e8/',
|
'url': 'https://www.fox.com/watch/4b765a60490325103ea69888fb2bd4e8/',
|
||||||
|
@ -30,8 +32,9 @@ class FOXIE(InfoExtractor):
|
||||||
'duration': 102,
|
'duration': 102,
|
||||||
'timestamp': 1504291893,
|
'timestamp': 1504291893,
|
||||||
'upload_date': '20170901',
|
'upload_date': '20170901',
|
||||||
'creator': 'FOX',
|
'creators': ['FOX'],
|
||||||
'series': 'Gotham',
|
# actual series name 'Gotham' is no longer returned by the API
|
||||||
|
'series': 'Aftermath: Bruce Wayne Develops Into The Dark Knight',
|
||||||
'age_limit': 14,
|
'age_limit': 14,
|
||||||
'episode': 'Aftermath: Bruce Wayne Develops Into The Dark Knight',
|
'episode': 'Aftermath: Bruce Wayne Develops Into The Dark Knight',
|
||||||
'thumbnail': r're:^https?://.*\.jpg$',
|
'thumbnail': r're:^https?://.*\.jpg$',
|
||||||
|
@ -39,6 +42,24 @@ class FOXIE(InfoExtractor):
|
||||||
'params': {
|
'params': {
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
# XML endpoint
|
||||||
|
'url': 'https://www.foxsports.com/watch/fmc-m2du80v5ewz11pbw',
|
||||||
|
'md5': '5451a633a5ca87b582a4d025df6852e6',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'fmc-m2du80v5ewz11pbw',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'WWE FRIDAY NIGHT SMACKDOWN',
|
||||||
|
'description': 'From Fiserv Forum in Milwaukee, WI',
|
||||||
|
'duration': 5367,
|
||||||
|
'timestamp': 1698176671,
|
||||||
|
'upload_date': '20231024',
|
||||||
|
'creators': ['fox-digital'],
|
||||||
|
'series': 'WWE FRIDAY NIGHT SMACKDOWN',
|
||||||
|
'age_limit': 0,
|
||||||
|
'episode': 'WWE FRIDAY NIGHT SMACKDOWN',
|
||||||
|
'thumbnail': r're:^https?://.*\.jpg$',
|
||||||
|
},
|
||||||
}, {
|
}, {
|
||||||
# episode, geo-restricted
|
# episode, geo-restricted
|
||||||
'url': 'https://www.fox.com/watch/087036ca7f33c8eb79b08152b4dd75c1/',
|
'url': 'https://www.fox.com/watch/087036ca7f33c8eb79b08152b4dd75c1/',
|
||||||
|
@ -54,9 +75,13 @@ class FOXIE(InfoExtractor):
|
||||||
}]
|
}]
|
||||||
_GEO_BYPASS = False
|
_GEO_BYPASS = False
|
||||||
_HOME_PAGE_URL = 'https://www.fox.com/'
|
_HOME_PAGE_URL = 'https://www.fox.com/'
|
||||||
_API_KEY = '6E9S4bmcoNnZwVLOHywOv8PJEdu76cM9'
|
_API_KEY = '6E9S4bmcoNnZwVLOHywOv8PJEdu76cM9' # sports: 'cf289e299efdfa39fb6316f259d1de93'
|
||||||
_access_token = None
|
_access_token = None
|
||||||
_device_id = str(uuid.uuid4())
|
_device_id = str(uuid.uuid4())
|
||||||
|
_XML_NS = {
|
||||||
|
'vmap': 'http://www.iab.net/videosuite/vmap',
|
||||||
|
'yospacenet': 'http://www.yospace.com/extension',
|
||||||
|
}
|
||||||
|
|
||||||
def _call_api(self, path, video_id, data=None):
|
def _call_api(self, path, video_id, data=None):
|
||||||
headers = {
|
headers = {
|
||||||
|
@ -66,7 +91,7 @@ class FOXIE(InfoExtractor):
|
||||||
headers['Authorization'] = 'Bearer ' + self._access_token
|
headers['Authorization'] = 'Bearer ' + self._access_token
|
||||||
try:
|
try:
|
||||||
return self._download_json(
|
return self._download_json(
|
||||||
'https://api3.fox.com/v2.0/' + path,
|
urljoin('https://api3.fox.com/v2.0/', path),
|
||||||
video_id, data=data, headers=headers)
|
video_id, data=data, headers=headers)
|
||||||
except ExtractorError as e:
|
except ExtractorError as e:
|
||||||
if isinstance(e.cause, HTTPError) and e.cause.status == 403:
|
if isinstance(e.cause, HTTPError) and e.cause.status == 403:
|
||||||
|
@ -100,8 +125,8 @@ class FOXIE(InfoExtractor):
|
||||||
f'previewpassmvpd?device_id={self._device_id}&mvpd_id=TempPass_fbcfox_60min',
|
f'previewpassmvpd?device_id={self._device_id}&mvpd_id=TempPass_fbcfox_60min',
|
||||||
video_id)['accessToken']
|
video_id)['accessToken']
|
||||||
|
|
||||||
video = self._call_api('watch', video_id, data=json.dumps({
|
video = self._call_api('https://prod.api.video.fox/v2.0/watch', video_id, data=json.dumps({
|
||||||
'capabilities': ['drm/widevine', 'fsdk/yo'],
|
'capabilities': ['fsdk/yo/v3'],
|
||||||
'deviceWidth': 1280,
|
'deviceWidth': 1280,
|
||||||
'deviceHeight': 720,
|
'deviceHeight': 720,
|
||||||
'maxRes': '720p',
|
'maxRes': '720p',
|
||||||
|
@ -116,13 +141,16 @@ class FOXIE(InfoExtractor):
|
||||||
'privacy': {'us': '1---'},
|
'privacy': {'us': '1---'},
|
||||||
'siteSection': '',
|
'siteSection': '',
|
||||||
'streamType': 'vod',
|
'streamType': 'vod',
|
||||||
'streamId': video_id}).encode())
|
'streamId': video_id,
|
||||||
|
}).encode())
|
||||||
title = video['name']
|
|
||||||
release_url = video['url']
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
m3u8_url = self._download_json(release_url, video_id)['playURL']
|
if playback_url := traverse_obj(video, ('playbackUrl', {url_or_none})):
|
||||||
|
xml_data = self._download_xml(playback_url, video_id)
|
||||||
|
stream = xml_data.find('vmap:Extensions/vmap:Extension/yospacenet:Stream', self._XML_NS)
|
||||||
|
m3u8_url = join_nonempty('https://', stream.get('urlDomain'), stream.get('urlSuffix'), delim='')
|
||||||
|
else:
|
||||||
|
m3u8_url = self._download_json(video['url'], video_id)['playURL']
|
||||||
except ExtractorError as e:
|
except ExtractorError as e:
|
||||||
if isinstance(e.cause, HTTPError) and e.cause.status == 403:
|
if isinstance(e.cause, HTTPError) and e.cause.status == 403:
|
||||||
error = self._parse_json(e.cause.response.read().decode(), video_id)
|
error = self._parse_json(e.cause.response.read().decode(), video_id)
|
||||||
|
@ -130,9 +158,11 @@ class FOXIE(InfoExtractor):
|
||||||
self.raise_geo_restricted(countries=['US'])
|
self.raise_geo_restricted(countries=['US'])
|
||||||
raise ExtractorError(error['description'], expected=True)
|
raise ExtractorError(error['description'], expected=True)
|
||||||
raise
|
raise
|
||||||
formats = self._extract_m3u8_formats(
|
|
||||||
m3u8_url, video_id, 'mp4',
|
if not m3u8_url or m3u8_url == 'https://':
|
||||||
entry_protocol='m3u8_native', m3u8_id='hls')
|
raise ExtractorError('Unable to extract m3u8 url')
|
||||||
|
|
||||||
|
formats = self._extract_m3u8_formats(m3u8_url, video_id, 'mp4', m3u8_id='hls')
|
||||||
|
|
||||||
data = try_get(
|
data = try_get(
|
||||||
video, lambda x: x['trackingData']['properties'], dict) or {}
|
video, lambda x: x['trackingData']['properties'], dict) or {}
|
||||||
|
@ -157,7 +187,7 @@ class FOXIE(InfoExtractor):
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': title,
|
'title': video.get('name'),
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
'description': video.get('description'),
|
'description': video.get('description'),
|
||||||
'duration': duration,
|
'duration': duration,
|
||||||
|
|
|
@ -5,7 +5,7 @@ from ..utils import float_or_none, make_archive_id, smuggle_url
|
||||||
|
|
||||||
|
|
||||||
class FoxSportsIE(InfoExtractor):
|
class FoxSportsIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?foxsports\.com/watch/(?P<id>[\w-]+)'
|
_VALID_URL = r'https?://(?:www\.)?foxsports\.com/watch/(?P<id>play-[\w-]+)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'https://www.foxsports.com/watch/play-612168c6700004b',
|
'url': 'https://www.foxsports.com/watch/play-612168c6700004b',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user