1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-01 21:51:02 +02:00

Adding subtitles

This commit is contained in:
PishPosh.McGee 2015-02-26 03:59:35 -06:00
parent 9724e5d336
commit 2e241242a3

View File

@ -250,6 +250,8 @@ def _real_extract(self, url):
})
self._sort_formats(formats)
subtitles = self._extract_subtitles(cdoc, guid)
virtual_id = show_name + ' ' + epTitle + ' part ' + compat_str(part_num + 1)
entries.append({
'id': guid,
@ -260,6 +262,7 @@ def _real_extract(self, url):
'duration': duration,
'thumbnail': thumbnail,
'description': description,
'subtitles': subtitles,
})
return {