[YoutubeDL] store the subtitles to download in the 'requested_subtitles' field

We need to keep the orginal subtitles information, so that the '--load-info' option can be used to list or select the subtitles again.
We'll also be able to have a separate field for storing the automatic captions info.
This commit is contained in:
Jaime Marquínez Ferrándiz 2015-02-16 21:12:31 +01:00
parent 65469a7f8b
commit c84dd8a90d
4 changed files with 8 additions and 9 deletions

View file

@ -36,7 +36,7 @@ class BaseTestSubtitles(unittest.TestCase):
def getSubtitles(self):
info_dict = self.getInfoDict()
subtitles = info_dict['subtitles']
subtitles = info_dict['requested_subtitles']
if not subtitles:
return subtitles
for sub_info in subtitles.values():