diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-11-04 00:05:53 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-11-04 00:05:53 +0530 |
commit | 31c49255bf647373734c2c7f917e0d24ab81ac95 (patch) | |
tree | cdcf298a2d6294e0395a0a1c96d463d9a0e179b1 /yt_dlp/options.py | |
parent | bd93fd5d45e104561bad919d4775feba869d0145 (diff) | |
download | hypervideo-pre-31c49255bf647373734c2c7f917e0d24ab81ac95.tar.lz hypervideo-pre-31c49255bf647373734c2c7f917e0d24ab81ac95.tar.xz hypervideo-pre-31c49255bf647373734c2c7f917e0d24ab81ac95.zip |
[ExtractAudio] Rescale --audio-quality correctly
Authored by: CrypticSignal, pukkandan
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index a3a6c74b3..bd9fdd37b 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -1215,7 +1215,7 @@ def parseOpts(overrideArguments=None): postproc.add_option( '--audio-quality', metavar='QUALITY', dest='audioquality', default='5', - help='Specify ffmpeg audio quality, insert a value between 0 (better) and 9 (worse) for VBR or a specific bitrate like 128K (default %default)') + help='Specify ffmpeg audio quality, insert a value between 0 (best) and 10 (worst) for VBR or a specific bitrate like 128K (default %default)') postproc.add_option( '--remux-video', metavar='FORMAT', dest='remuxvideo', default=None, |