[YoutubeDL] don't set the 'requested_subtitles' without writesubtitles or writeautomaticsub
This commit is contained in:
parent
fb7cb6823e
commit
4d17184817
2 changed files with 9 additions and 7 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue