mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-15 13:43:04 +00:00
Compare commits
2 Commits
6ef5ad9e29
...
468f104ce7
Author | SHA1 | Date | |
---|---|---|---|
|
468f104ce7 | ||
|
cbc6ee10da |
@ -501,6 +501,7 @@ from .fc2 import (
|
|||||||
FC2LiveIE,
|
FC2LiveIE,
|
||||||
)
|
)
|
||||||
from .fczenit import FczenitIE
|
from .fczenit import FczenitIE
|
||||||
|
from .fifa import FifaIE
|
||||||
from .filmmodu import FilmmoduIE
|
from .filmmodu import FilmmoduIE
|
||||||
from .filmon import (
|
from .filmon import (
|
||||||
FilmOnIE,
|
FilmOnIE,
|
||||||
@ -848,6 +849,7 @@ from .markiza import (
|
|||||||
MarkizaPageIE,
|
MarkizaPageIE,
|
||||||
)
|
)
|
||||||
from .massengeschmacktv import MassengeschmackTVIE
|
from .massengeschmacktv import MassengeschmackTVIE
|
||||||
|
from .masters import MastersIE
|
||||||
from .matchtv import MatchTVIE
|
from .matchtv import MatchTVIE
|
||||||
from .mdr import MDRIE
|
from .mdr import MDRIE
|
||||||
from .medaltv import MedalTVIE
|
from .medaltv import MedalTVIE
|
||||||
|
108
yt_dlp/extractor/fifa.py
Normal file
108
yt_dlp/extractor/fifa.py
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
from .common import InfoExtractor
|
||||||
|
|
||||||
|
from ..utils import (
|
||||||
|
int_or_none,
|
||||||
|
traverse_obj,
|
||||||
|
unified_timestamp,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class FifaIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'https?://www.fifa.com/fifaplus/(?P<locale>\w{2})/watch/(?P<id>\w+)/?'
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'https://www.fifa.com/fifaplus/en/watch/7on10qPcnyLajDDU3ntg6y',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '7on10qPcnyLajDDU3ntg6y',
|
||||||
|
'title': 'Italy v France | Final | 2006 FIFA World Cup Germany™ | Full Match Replay',
|
||||||
|
'description': 'md5:f4520d0ee80529c8ba4134a7d692ff8b',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'categories': ['FIFA Tournaments', 'Replay'],
|
||||||
|
'thumbnail': 'https://digitalhub.fifa.com/transform/fa6f0b3e-a2e9-4cf7-9f32-53c57bcb7360/2006_Final_ITA_FRA',
|
||||||
|
'duration': 8164,
|
||||||
|
},
|
||||||
|
'params': {'skip_download': 'm3u8'},
|
||||||
|
}, {
|
||||||
|
'url': 'https://www.fifa.com/fifaplus/pt/watch/1cg5r5Qt6Qt12ilkDgb1sV',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '1cg5r5Qt6Qt12ilkDgb1sV',
|
||||||
|
'title': 'Brasil x Alemanha | Semifinais | Copa do Mundo FIFA Brasil 2014 | Compacto',
|
||||||
|
'description': 'md5:ba4ffcc084802b062beffc3b4c4b19d6',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'categories': ['FIFA Tournaments', 'Highlights'],
|
||||||
|
'thumbnail': 'https://digitalhub.fifa.com/transform/d8fe6f61-276d-4a73-a7fe-6878a35fd082/FIFAPLS_100EXTHL_2014BRAvGER_TMB',
|
||||||
|
'duration': 901,
|
||||||
|
'release_timestamp': 1404777600,
|
||||||
|
'release_date': '20140708',
|
||||||
|
},
|
||||||
|
'params': {'skip_download': 'm3u8'},
|
||||||
|
}, {
|
||||||
|
'url': 'https://www.fifa.com/fifaplus/fr/watch/3C6gQH9C2DLwzNx7BMRQdp',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '3C6gQH9C2DLwzNx7BMRQdp',
|
||||||
|
'title': 'Le but de Josimar contre le Irlande du Nord | Buts classiques',
|
||||||
|
'description': 'md5:16f9f789f09960bfe7220fe67af31f34',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'categories': ['FIFA Tournaments', 'Goal'],
|
||||||
|
'duration': 28,
|
||||||
|
'thumbnail': 'https://digitalhub.fifa.com/transform/f9301391-f8d9-48b5-823e-c093ac5e3e11/CG_MEN_1986_JOSIMAR',
|
||||||
|
},
|
||||||
|
'params': {'skip_download': 'm3u8'},
|
||||||
|
}]
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
video_id, locale = self._match_valid_url(url).group('id', 'locale')
|
||||||
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
|
preconnect_link = self._search_regex(
|
||||||
|
r'<link[^>]+rel\s*=\s*"preconnect"[^>]+href\s*=\s*"([^"]+)"', webpage, 'Preconnect Link')
|
||||||
|
|
||||||
|
json_data = self._download_json(
|
||||||
|
f'{preconnect_link}/video/GetVideoPlayerData/{video_id}', video_id,
|
||||||
|
'Downloading Video Player Data', query={'includeIdents': True, 'locale': locale})
|
||||||
|
|
||||||
|
video_details = self._download_json(
|
||||||
|
f'{preconnect_link}/sections/videoDetails/{video_id}', video_id, 'Downloading Video Details', fatal=False)
|
||||||
|
|
||||||
|
preplay_parameters = self._download_json(
|
||||||
|
f'{preconnect_link}/video/GetVerizonPreplayParameters', video_id, 'Downloading Preplay Parameters', query={
|
||||||
|
'entryId': video_id,
|
||||||
|
'assetId': json_data['verizonAssetId'],
|
||||||
|
'useExternalId': False,
|
||||||
|
'requiresToken': json_data['requiresToken'],
|
||||||
|
'adConfig': 'fifaplusvideo',
|
||||||
|
'prerollAds': True,
|
||||||
|
'adVideoId': json_data['externalVerizonAssetId'],
|
||||||
|
'preIdentId': json_data['preIdentId'],
|
||||||
|
'postIdentId': json_data['postIdentId'],
|
||||||
|
})
|
||||||
|
|
||||||
|
cid = f'{json_data["preIdentId"]},{json_data["verizonAssetId"]},{json_data["postIdentId"]}'
|
||||||
|
content_data = self._download_json(
|
||||||
|
f'https://content.uplynk.com/preplay/{cid}/multiple.json', video_id, 'Downloading Content Data', query={
|
||||||
|
'v': preplay_parameters['preplayAPIVersion'],
|
||||||
|
'tc': preplay_parameters['tokenCheckAlgorithmVersion'],
|
||||||
|
'rn': preplay_parameters['randomNumber'],
|
||||||
|
'exp': preplay_parameters['tokenExpirationDate'],
|
||||||
|
'ct': preplay_parameters['contentType'],
|
||||||
|
'cid': cid,
|
||||||
|
'mbtracks': preplay_parameters['tracksAssetNumber'],
|
||||||
|
'ad': preplay_parameters['adConfiguration'],
|
||||||
|
'ad.preroll': int(preplay_parameters['adPreroll']),
|
||||||
|
'ad.cmsid': preplay_parameters['adCMSSourceId'],
|
||||||
|
'ad.vid': preplay_parameters['adSourceVideoID'],
|
||||||
|
'sig': preplay_parameters['signature'],
|
||||||
|
})
|
||||||
|
|
||||||
|
formats = self._extract_m3u8_formats(
|
||||||
|
content_data['playURL'], video_id, note='Downloading m3u8 Information')
|
||||||
|
|
||||||
|
return {
|
||||||
|
'id': video_id,
|
||||||
|
'title': json_data.get('title'),
|
||||||
|
'description': json_data.get('description'),
|
||||||
|
'duration': int_or_none(json_data.get('duration')),
|
||||||
|
'release_timestamp': unified_timestamp(video_details.get('dateOfRelease')),
|
||||||
|
'categories': traverse_obj(video_details, (('videoCategory', 'videoSubcategory'),)),
|
||||||
|
'thumbnail': traverse_obj(video_details, ('backgroundImage', 'src')),
|
||||||
|
'formats': formats,
|
||||||
|
}
|
39
yt_dlp/extractor/masters.py
Normal file
39
yt_dlp/extractor/masters.py
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
from __future__ import unicode_literals
|
||||||
|
from .common import InfoExtractor
|
||||||
|
from ..utils import (
|
||||||
|
traverse_obj,
|
||||||
|
unified_strdate,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class MastersIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'https?://(?:www\.)?masters\.com/en_US/watch/(?P<date>\d{4}-\d{2}-\d{2})/(?P<id>\d+)'
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'https://www.masters.com/en_US/watch/2022-04-07/16493755593805191/sungjae_im_thursday_interview_2022.html',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '16493755593805191',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Sungjae Im: Thursday Interview 2022',
|
||||||
|
'upload_date': '20220407',
|
||||||
|
'thumbnail': r're:^https?://.*\.jpg$',
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
video_id, upload_date = self._match_valid_url(url).group('id', 'date')
|
||||||
|
content_resp = self._download_json(
|
||||||
|
f'https://www.masters.com/relatedcontent/rest/v2/masters_v1/en/content/masters_v1_{video_id}_en',
|
||||||
|
video_id)
|
||||||
|
formats, subtitles = self._extract_m3u8_formats_and_subtitles(traverse_obj(content_resp, ('media', 'm3u8')), video_id, 'mp4')
|
||||||
|
self._sort_formats(formats)
|
||||||
|
|
||||||
|
thumbnails = [{'id': name, 'url': url} for name, url in traverse_obj(content_resp, ('images', 0), default={}).items()]
|
||||||
|
|
||||||
|
return {
|
||||||
|
'id': video_id,
|
||||||
|
'title': content_resp.get('title'),
|
||||||
|
'formats': formats,
|
||||||
|
'subtitles': subtitles,
|
||||||
|
'upload_date': unified_strdate(upload_date),
|
||||||
|
'thumbnails': thumbnails,
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user