aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/options.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-06-06 21:18:44 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-06-06 21:51:28 +0530
commite0ab98541cec9515d94ada8885a0bb999277f0c0 (patch)
treeee76006d2596407f38b68d2b7bbc366d4118f73d /yt_dlp/options.py
parent35faefee5ddb67c447c3206199cc06124600e84d (diff)
downloadhypervideo-pre-e0ab98541cec9515d94ada8885a0bb999277f0c0.tar.lz
hypervideo-pre-e0ab98541cec9515d94ada8885a0bb999277f0c0.tar.xz
hypervideo-pre-e0ab98541cec9515d94ada8885a0bb999277f0c0.zip
[ExtractAudio] Allow conditional conversion
Closes #1715
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r--yt_dlp/options.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py
index 97d8c61a9..a9a2ba45f 100644
--- a/yt_dlp/options.py
+++ b/yt_dlp/options.py
@@ -1424,7 +1424,8 @@ def create_parser():
'--audio-format', metavar='FORMAT', dest='audioformat', default='best',
help=(
'Format to convert the audio to when -x is used. '
- f'(currently supported: best (default), {", ".join(FFmpegExtractAudioPP.SUPPORTED_EXTS)})'))
+ f'(currently supported: best (default), {", ".join(FFmpegExtractAudioPP.SUPPORTED_EXTS)}). '
+ 'You can specify multiple rules using similar syntax as --remux-video'))
postproc.add_option(
'--audio-quality', metavar='QUALITY',
dest='audioquality', default='5',