aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/__init__.py
diff options
context:
space:
mode:
authorIsmael Mejia <iemejia@gmail.com>2013-02-22 03:13:28 +0100
committerFilippo Valsorda <filippo.valsorda@gmail.com>2013-03-20 08:41:53 +0100
commit553d097442ad5ee62d227de2e2703a2377dcf40f (patch)
treec2878bc4ee4d3fec91e4146a87c4c8bb177c8d48 /youtube_dl/__init__.py
parentae608b8076497d70e2a95e5e939c1fb31e2dde53 (diff)
downloadyoutube-dl-553d097442ad5ee62d227de2e2703a2377dcf40f.tar.xz
Refactor subtitle options from srt to the more generic 'sub'.
In order to be more consistent with different subtitle formats. From: * --write-srt to --write-sub * --only-srt to --only-sub * --all-srt to --all-subs * --srt-lang to --sub-lang' Refactored also all the mentions of srt for sub in all the source code.
Diffstat (limited to 'youtube_dl/__init__.py')
-rw-r--r--youtube_dl/__init__.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 20a22a4d1..495b5ac41 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -173,18 +173,18 @@ def parseOpts():
action='store', dest='format_limit', metavar='FORMAT', help='highest quality format to download')
video_format.add_option('-F', '--list-formats',
action='store_true', dest='listformats', help='list all available formats (currently youtube only)')
- video_format.add_option('--write-srt',
+ video_format.add_option('--write-sub',
action='store_true', dest='writesubtitles',
- help='write video closed captions to a .srt file (currently youtube only)', default=False)
- video_format.add_option('--only-srt',
+ help='write subtitle file (currently youtube only)', default=False)
+ video_format.add_option('--only-sub',
action='store_true', dest='onlysubtitles',
- help='downloads only the subtitles of the video (currently youtube only)', default=False)
- video_format.add_option('--all-srt',
+ help='downloads only the subtitles (no video)', default=False)
+ video_format.add_option('--all-subs',
action='store_true', dest='allsubtitles',
help='downloads all the available subtitles of the video (currently youtube only)', default=False)
- video_format.add_option('--srt-lang',
+ video_format.add_option('--sub-lang',
action='store', dest='subtitleslang', metavar='LANG',
- help='language of the closed captions to download (optional) use IETF language tags like \'en\'')
+ help='language of the subtitles to download (optional) use IETF language tags like \'en\'')
verbosity.add_option('-q', '--quiet',
action='store_true', dest='quiet', help='activates quiet mode', default=False)