Set the ext field for each format
This commit is contained in:
parent
19e1d35989
commit
471a5ee908
3 changed files with 9 additions and 8 deletions
|
@ -46,6 +46,8 @@ class ArchiveOrgIE(InfoExtractor):
|
|||
for fn,fdata in data['files'].items()
|
||||
if 'Video' in fdata['format']]
|
||||
formats.sort(key=lambda fdata: fdata['file_size'])
|
||||
for f in formats:
|
||||
f['ext'] = determine_ext(f['url'])
|
||||
|
||||
info = {
|
||||
'_type': 'video',
|
||||
|
@ -61,7 +63,6 @@ class ArchiveOrgIE(InfoExtractor):
|
|||
info['thumbnail'] = thumbnail
|
||||
|
||||
# TODO: Remove when #980 has been merged
|
||||
info['url'] = formats[-1]['url']
|
||||
info['ext'] = determine_ext(formats[-1]['url'])
|
||||
info.update(formats[-1])
|
||||
|
||||
return info
|
||||
return info
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue