mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-06 21:17:06 +01:00
Merge branch 'wdr-subtitles' of https://github.com/mrtnmtth/youtube-dl into mrtnmtth-wdr-subtitles
This commit is contained in:
commit
47b9774231
@ -45,9 +45,18 @@ def _real_extract(self, url):
|
|||||||
media_resource = metadata['mediaResource']
|
media_resource = metadata['mediaResource']
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
|
subtitles = {}
|
||||||
|
|
||||||
# check if the metadata contains a direct URL to a file
|
# check if the metadata contains a direct URL to a file
|
||||||
for kind, media_resource in media_resource.items():
|
for kind, media_resource in media_resource.items():
|
||||||
|
if kind == 'captionsHash':
|
||||||
|
for ext, url in media_resource.items():
|
||||||
|
subtitles.setdefault('de', []).append({
|
||||||
|
'url': url,
|
||||||
|
'ext': ext,
|
||||||
|
})
|
||||||
|
continue
|
||||||
|
|
||||||
if kind not in ('dflt', 'alt'):
|
if kind not in ('dflt', 'alt'):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
@ -81,14 +90,6 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
subtitles = {}
|
|
||||||
caption_url = media_resource.get('captionURL')
|
|
||||||
if caption_url:
|
|
||||||
subtitles['de'] = [{
|
|
||||||
'url': caption_url,
|
|
||||||
'ext': 'ttml',
|
|
||||||
}]
|
|
||||||
|
|
||||||
title = tracker_data['trackerClipTitle']
|
title = tracker_data['trackerClipTitle']
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user