[YoutubeDL] don't set the 'requested_subtitles' without writesubtitles or writeautomaticsub

This commit is contained in:
Jaime Marquínez Ferrándiz 2015-02-21 22:31:53 +01:00
parent fb7cb6823e
commit 4d17184817
2 changed files with 9 additions and 7 deletions

View file

@ -1164,8 +1164,10 @@ class YoutubeDL(object):
if lang not in available_subs:
available_subs[lang] = cap_info
if not available_subs:
return available_subs
if (not self.params.get('writesubtitles') and not
self.params.get('writeautomaticsub') or not
available_subs):
return None
if self.params.get('allsubtitles', False):
requested_langs = available_subs.keys()