Let extractors omit ext in formats
This commit is contained in:
parent
77d0a82fef
commit
c1002e96e9
2 changed files with 3 additions and 1 deletions
|
@ -484,6 +484,9 @@ class YoutubeDL(object):
|
|||
res=self.format_resolution(format),
|
||||
note=u' ({})'.format(format['format_note']) if format.get('format_note') is not None else '',
|
||||
)
|
||||
# Automatically determine file extension if missing
|
||||
if 'ext' not in format:
|
||||
format['ext'] = determine_ext(format['url'])
|
||||
|
||||
if self.params.get('listformats', None):
|
||||
self.list_formats(info_dict)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue