diff options
author | Tom-Oliver Heidel <github@tom-oliver.eu> | 2020-09-01 00:10:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-01 00:10:46 +0200 |
commit | fbfeb7c74a8d672337ce1ddb295fc5238a1558ac (patch) | |
tree | 946519eefdfbad56814ee1c104766f1e15f786c0 | |
parent | 1e42995635b88846f0e2ba8d32f8d7d9f979c942 (diff) | |
parent | ba39289d79452650263cc6e7950d41fba8dcef8e (diff) | |
download | hypervideo-pre-fbfeb7c74a8d672337ce1ddb295fc5238a1558ac.tar.lz hypervideo-pre-fbfeb7c74a8d672337ce1ddb295fc5238a1558ac.tar.xz hypervideo-pre-fbfeb7c74a8d672337ce1ddb295fc5238a1558ac.zip |
Merge pull request #19 from tfvlrue/master
[soundcloud] Resolve audio/x-wav
-rw-r--r-- | youtube_dl/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index d1eca3760..c73f5e0ca 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -4173,6 +4173,7 @@ def mimetype2ext(mt): # Per RFC 3003, audio/mpeg can be .mp1, .mp2 or .mp3. Here use .mp3 as # it's the most popular one 'audio/mpeg': 'mp3', + 'audio/x-wav': 'wav', }.get(mt) if ext is not None: return ext |