mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-23 02:25:11 +00:00
parent
3f7965105d
commit
8cb7fc44db
1 changed files with 4 additions and 4 deletions
|
@ -2339,13 +2339,13 @@ def _merge(formats_pair):
|
|||
return new_dict
|
||||
|
||||
def _check_formats(formats):
|
||||
if (self.params.get('check_formats') is not None
|
||||
if self.params.get('check_formats') == 'selected':
|
||||
yield from self._check_formats(formats)
|
||||
return
|
||||
elif (self.params.get('check_formats') is not None
|
||||
or self.params.get('allow_unplayable_formats')):
|
||||
yield from formats
|
||||
return
|
||||
elif self.params.get('check_formats') == 'selected':
|
||||
yield from self._check_formats(formats)
|
||||
return
|
||||
|
||||
for f in formats:
|
||||
if f.get('has_drm'):
|
||||
|
|
Loading…
Reference in a new issue