mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-08 01:13:15 +00:00
[ie/tv5mondeplus] Extract subtitles (#4209)
Closes #4205 Authored by: FrankZ85
This commit is contained in:
parent
21dc069bea
commit
0f634dba3a
|
@ -84,6 +84,13 @@ class TV5MondePlusIE(InfoExtractor):
|
|||
}]
|
||||
_GEO_BYPASS = False
|
||||
|
||||
@staticmethod
|
||||
def _extract_subtitles(data_captions):
|
||||
subtitles = {}
|
||||
for f in traverse_obj(data_captions, ('files', lambda _, v: url_or_none(v['file']))):
|
||||
subtitles.setdefault(f.get('label') or 'fra', []).append({'url': f['file']})
|
||||
return subtitles
|
||||
|
||||
def _real_extract(self, url):
|
||||
display_id = self._match_id(url)
|
||||
webpage = self._download_webpage(url, display_id)
|
||||
|
@ -176,6 +183,8 @@ def process_video_files(v):
|
|||
'duration': duration,
|
||||
'upload_date': upload_date,
|
||||
'formats': formats,
|
||||
'subtitles': self._extract_subtitles(self._parse_json(
|
||||
traverse_obj(vpl_data, ('data-captions', {str}), default='{}'), display_id, fatal=False)),
|
||||
'series': series,
|
||||
'episode': episode,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue