mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 06:27:21 +00:00
[utils] mimetype2ext
: weba is not standard
Fix bug infbb7383306
,2647c933b8
Closes #5935
This commit is contained in:
parent
1a3cd8ec35
commit
d80ca5deaa
|
@ -44,6 +44,7 @@
|
|||
'ts': 'mpegts',
|
||||
'wma': 'asf',
|
||||
'wmv': 'asf',
|
||||
'weba': 'webm',
|
||||
'vtt': 'webvtt',
|
||||
}
|
||||
ACODECS = {
|
||||
|
|
|
@ -3529,7 +3529,7 @@ def mimetype2ext(mt, default=NO_DEFAULT):
|
|||
# Per RFC 3003, audio/mpeg can be .mp1, .mp2 or .mp3.
|
||||
# Using .mp3 as it's the most popular one
|
||||
'audio/mpeg': 'mp3',
|
||||
'audio/webm': 'weba',
|
||||
'audio/webm': 'webm',
|
||||
'audio/x-matroska': 'mka',
|
||||
'audio/x-mpegurl': 'm3u',
|
||||
'midi': 'mid',
|
||||
|
|
Loading…
Reference in a new issue