aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/__init__.py
diff options
context:
space:
mode:
authorAllan Zhou <allanzp@gmail.com>2013-08-30 17:51:50 -0700
committerAllan Zhou <allanzp@gmail.com>2013-08-30 17:51:50 -0700
commitbdc6b3fc64a03045b8130cdc824ee3f6c15eeff1 (patch)
tree871acb1b2e66da94161cc3751ce532af980fdc0d /youtube_dl/__init__.py
parent483e0ddd4da561939a592aecf19f6f9c80eb2d0a (diff)
downloadyoutube-dl-bdc6b3fc64a03045b8130cdc824ee3f6c15eeff1.tar.xz
add support for "-f mp4" for YouTube
Diffstat (limited to 'youtube_dl/__init__.py')
-rw-r--r--youtube_dl/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 431460c57..b6b12683f 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -192,7 +192,7 @@ def parseOpts(overrideArguments=None):
video_format.add_option('-f', '--format',
action='store', dest='format', metavar='FORMAT',
- help='video format code, specifiy the order of preference using slashes: "-f 22/17/18"')
+ help='video format code, specifiy the order of preference using slashes: "-f 22/17/18". "-f mp4" and "-f flv" are also supported')
video_format.add_option('--all-formats',
action='store_const', dest='format', help='download all available video formats', const='all')
video_format.add_option('--prefer-free-formats',