1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-05 18:39:37 +02:00

[ExtractAudio] Fix conversion to wav

Closes #1645
This commit is contained in:
pukkandan 2021-11-13 15:11:33 +05:30
parent 92775d8a40
commit 39c04074e7
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

View File

@ -403,10 +403,7 @@ def _quality_args(self, codec):
'aac': (0.1, 4),
'vorbis': (0, 10),
'libfdk_aac': (1, 5),
'opus': None, # doesn't support -q:a
'wav': None,
'flac': None,
}[codec]
}.get(codec)
if not limits:
return []