summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-11-08 15:09:04 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-11-08 15:09:04 +0100
commitc2b61af54827373780415edce92b971b43ceead1 (patch)
treecf14e08cc4c9f690946826445b0d3f5af5bcb9ed
parent2fdbf27ad8f241c8f23b4a37683243a06903546d (diff)
downloadyoutube-dl-c2b61af54827373780415edce92b971b43ceead1.tar.gz
youtube-dl-c2b61af54827373780415edce92b971b43ceead1.tar.xz
youtube-dl-c2b61af54827373780415edce92b971b43ceead1.zip
[options] Document the syntax for merging formats (closes #3940, closes #4132)
-rw-r--r--youtube_dl/options.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py
index 997e92ad7..cdcf2f62c 100644
--- a/youtube_dl/options.py
+++ b/youtube_dl/options.py
@@ -261,7 +261,16 @@ def parseOpts(overrideArguments=None):
     video_format.add_option(
         '-f', '--format',
         action='store', dest='format', metavar='FORMAT', default=None,
-        help='video format code, specify the order of preference using slashes: -f 22/17/18 .  -f mp4 , -f m4a and  -f flv  are also supported. You can also use the special names "best", "bestvideo", "bestaudio", "worst", "worstvideo" and "worstaudio". By default, youtube-dl will pick the best quality. Use commas to download multiple audio formats, such as  -f  136/137/mp4/bestvideo,140/m4a/bestaudio')
+        help='video format code, specify the order of preference using'
+            ' slashes: -f 22/17/18 .  -f mp4 , -f m4a and  -f flv  are also'
+            ' supported. You can also use the special names "best",'
+            ' "bestvideo", "bestaudio", "worst", "worstvideo" and'
+            ' "worstaudio". By default, youtube-dl will pick the best quality.'
+            ' Use commas to download multiple audio formats, such as'
+            ' -f  136/137/mp4/bestvideo,140/m4a/bestaudio.'
+            ' You can merge the video and audio of two formats into a single'
+            ' file using -f <video-format>+<audio-format> (requires ffmpeg or'
+            ' avconv), for example -f bestvideo+bestaudio.')
     video_format.add_option(
         '--all-formats',
         action='store_const', dest='format', const='all',