aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/postprocessor/ffmpeg.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2022-03-12 06:05:22 +0800
committerJesús <heckyel@hyperbola.info>2022-03-12 06:05:22 +0800
commitb9775db0f6c1013c76bd34784a92943c1c099e17 (patch)
tree578123ef504e260d59b3490eab648f7e20348f94 /yt_dlp/postprocessor/ffmpeg.py
parent4dca2c43485c9aebf8437e0dae86668a0b969b20 (diff)
parent592b748582f67309ac79670ba6a4bb7a62c4506f (diff)
downloadhypervideo-pre-b9775db0f6c1013c76bd34784a92943c1c099e17.tar.lz
hypervideo-pre-b9775db0f6c1013c76bd34784a92943c1c099e17.tar.xz
hypervideo-pre-b9775db0f6c1013c76bd34784a92943c1c099e17.zip
updated from upstream | 12/03/2022 at 06:05
Diffstat (limited to 'yt_dlp/postprocessor/ffmpeg.py')
-rw-r--r--yt_dlp/postprocessor/ffmpeg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/postprocessor/ffmpeg.py b/yt_dlp/postprocessor/ffmpeg.py
index 907627381..aee84cf5b 100644
--- a/yt_dlp/postprocessor/ffmpeg.py
+++ b/yt_dlp/postprocessor/ffmpeg.py
@@ -404,7 +404,7 @@ class FFmpegPostProcessor(PostProcessor):
class FFmpegExtractAudioPP(FFmpegPostProcessor):
COMMON_AUDIO_EXTS = ('wav', 'flac', 'm4a', 'aiff', 'mp3', 'ogg', 'mka', 'opus', 'wma')
- SUPPORTED_EXTS = ('best', 'aac', 'flac', 'mp3', 'm4a', 'opus', 'vorbis', 'wav', 'alac')
+ SUPPORTED_EXTS = ('aac', 'flac', 'mp3', 'm4a', 'opus', 'vorbis', 'wav', 'alac')
def __init__(self, downloader=None, preferredcodec=None, preferredquality=None, nopostoverwrites=False):
FFmpegPostProcessor.__init__(self, downloader)