Filter and sort videos before calling list_formats
This commit is contained in:
parent
e56f22ae20
commit
bfaae0a768
1 changed files with 5 additions and 4 deletions
|
@ -662,10 +662,6 @@ class YoutubeDL(object):
|
|||
if 'ext' not in format:
|
||||
format['ext'] = determine_ext(format['url'])
|
||||
|
||||
if self.params.get('listformats', None):
|
||||
self.list_formats(info_dict)
|
||||
return
|
||||
|
||||
format_limit = self.params.get('format_limit', None)
|
||||
if format_limit:
|
||||
formats = list(takewhile_inclusive(
|
||||
|
@ -681,6 +677,11 @@ class YoutubeDL(object):
|
|||
return (f.get('height'), f.get('width'), ext_ord)
|
||||
formats = sorted(formats, key=_free_formats_key)
|
||||
|
||||
info_dict['formats'] = formats
|
||||
if self.params.get('listformats', None):
|
||||
self.list_formats(info_dict)
|
||||
return
|
||||
|
||||
req_format = self.params.get('format', 'best')
|
||||
if req_format is None:
|
||||
req_format = 'best'
|
||||
|
|
Loading…
Reference in a new issue