about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2021-01-23 00:00:53 +0700
committerSergey M․ <dstftw@gmail.com>2021-01-23 00:00:53 +0700
commit5519bba3e14d05ccc8c7114e2f2909294c65a26e (patch)
treed89448925d80b8009330351ccbb1da828c88c805
parent142c584063ec02406e636522fe11d0d2be22b299 (diff)
downloadyoutube-dl-5519bba3e14d05ccc8c7114e2f2909294c65a26e.tar.gz
youtube-dl-5519bba3e14d05ccc8c7114e2f2909294c65a26e.tar.xz
youtube-dl-5519bba3e14d05ccc8c7114e2f2909294c65a26e.zip
[options] Clarify --extract-audio help string (closes #27878)
-rw-r--r--youtube_dl/options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py
index 6b0c62e19..241cf110f 100644
--- a/youtube_dl/options.py
+++ b/youtube_dl/options.py
@@ -786,7 +786,7 @@ def parseOpts(overrideArguments=None):
     postproc.add_option(
         '-x', '--extract-audio',
         action='store_true', dest='extractaudio', default=False,
-        help='Convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)')
+        help='Convert video files to audio-only files (requires ffmpeg/avconv and ffprobe/avprobe)')
     postproc.add_option(
         '--audio-format', metavar='FORMAT', dest='audioformat', default='best',
         help='Specify audio format: "best", "aac", "flac", "mp3", "m4a", "opus", "vorbis", or "wav"; "%default" by default; No effect without -x')