diff options
author | Iulian Onofrei <revolter@users.noreply.github.com> | 2017-01-20 18:25:04 +0200 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2017-01-21 00:25:04 +0800 |
commit | f4ec8dce481564589419e4dffc45437211daa13f (patch) | |
tree | 9303e828911bb198bceae9e5ea1fd4a672505228 /youtube_dl/options.py | |
parent | f3c21cb7a7e2d8685f466368e3142739077498cf (diff) |
Update README.md (#11787)
Add audio format argument dependency warning
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r-- | youtube_dl/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 0b8c1671d..0d2ce8d15 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -751,7 +751,7 @@ def parseOpts(overrideArguments=None): help='Convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)') postproc.add_option( '--audio-format', metavar='FORMAT', dest='audioformat', default='best', - help='Specify audio format: "best", "aac", "vorbis", "mp3", "m4a", "opus", or "wav"; "%default" by default') + help='Specify audio format: "best", "aac", "vorbis", "mp3", "m4a", "opus", or "wav"; "%default" by default; No effect without -x') postproc.add_option( '--audio-quality', metavar='QUALITY', dest='audioquality', default='5', |