[utils] mimetype2ext: return 'm4a' for 'audio/mp4' (fixes #8620)
The youtube extractor was using 'mp4' for them, therefore filters like 'bestaudio[ext=m4a]' stopped working (94278f7202
broke it).
This commit is contained in:
parent
a4e4d7dfcd
commit
765ac263db
1 changed files with 6 additions and 0 deletions
|
@ -1836,6 +1836,12 @@ def error_to_compat_str(err):
|
|||
|
||||
|
||||
def mimetype2ext(mt):
|
||||
ext = {
|
||||
'audio/mp4': 'm4a',
|
||||
}.get(mt)
|
||||
if ext is not None:
|
||||
return ext
|
||||
|
||||
_, _, res = mt.rpartition('/')
|
||||
|
||||
return {
|
||||
|
|
Loading…
Reference in a new issue