mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[openload] Support subtitles (closes #10625)
This commit is contained in:
parent
5968d7d2fe
commit
0711995bca
2 changed files with 26 additions and 1 deletions
|
@ -3,6 +3,9 @@ vesion <unreleased>
|
||||||
Core
|
Core
|
||||||
+ Improved support for HTML5 subtitles
|
+ Improved support for HTML5 subtitles
|
||||||
|
|
||||||
|
Extractors
|
||||||
|
+ [openload] Support subtitles (#10625)
|
||||||
|
|
||||||
|
|
||||||
version 2016.09.24
|
version 2016.09.24
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,22 @@ class OpenloadIE(InfoExtractor):
|
||||||
'title': 'skyrim_no-audio_1080.mp4',
|
'title': 'skyrim_no-audio_1080.mp4',
|
||||||
'thumbnail': 're:^https?://.*\.jpg$',
|
'thumbnail': 're:^https?://.*\.jpg$',
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
'url': 'https://openload.co/embed/rjC09fkPLYs',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'rjC09fkPLYs',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'movie.mp4',
|
||||||
|
'thumbnail': 're:^https?://.*\.jpg$',
|
||||||
|
'subtitles': {
|
||||||
|
'en': [{
|
||||||
|
'ext': 'vtt',
|
||||||
|
}],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
'skip_download': True, # test subtitles only
|
||||||
|
},
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://openload.co/embed/kUEfGclsU9o/skyrim_no-audio_1080.mp4',
|
'url': 'https://openload.co/embed/kUEfGclsU9o/skyrim_no-audio_1080.mp4',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
@ -71,11 +87,17 @@ class OpenloadIE(InfoExtractor):
|
||||||
'title', default=None) or self._html_search_meta(
|
'title', default=None) or self._html_search_meta(
|
||||||
'description', webpage, 'title', fatal=True)
|
'description', webpage, 'title', fatal=True)
|
||||||
|
|
||||||
return {
|
entries = self._parse_html5_media_entries(url, webpage, video_id)
|
||||||
|
subtitles = entries[0]['subtitles'] if entries else None
|
||||||
|
|
||||||
|
info_dict = {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': title,
|
'title': title,
|
||||||
'thumbnail': self._og_search_thumbnail(webpage, default=None),
|
'thumbnail': self._og_search_thumbnail(webpage, default=None),
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
# Seems all videos have extensions in their titles
|
# Seems all videos have extensions in their titles
|
||||||
'ext': determine_ext(title),
|
'ext': determine_ext(title),
|
||||||
|
'subtitles': subtitles,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return info_dict
|
||||||
|
|
Loading…
Reference in a new issue