mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-12-14 07:12:41 +00:00
[bandcamp] Detect acodec
This commit is contained in:
parent
a10aa588b0
commit
933dbf5a55
1 changed files with 1 additions and 0 deletions
|
@ -183,6 +183,7 @@ class BandcampIE(InfoExtractor):
|
||||||
'format_note': f.get('description'),
|
'format_note': f.get('description'),
|
||||||
'filesize': parse_filesize(f.get('size_mb')),
|
'filesize': parse_filesize(f.get('size_mb')),
|
||||||
'vcodec': 'none',
|
'vcodec': 'none',
|
||||||
|
'acodec': format_id.split('-')[0],
|
||||||
})
|
})
|
||||||
|
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
Loading…
Reference in a new issue