Added new option '--all-srt' to download all the subtitles of a video.

Only works in youtube for the moment.
This commit is contained in:
Ismael Mejia 2013-02-22 02:52:55 +01:00 committed by Filippo Valsorda
parent cdb130b09a
commit ae608b8076
5 changed files with 107 additions and 35 deletions

View file

@ -179,6 +179,9 @@ def parseOpts():
video_format.add_option('--only-srt',
action='store_true', dest='onlysubtitles',
help='downloads only the subtitles of the video (currently youtube only)', default=False)
video_format.add_option('--all-srt',
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',
action='store', dest='subtitleslang', metavar='LANG',
help='language of the closed captions to download (optional) use IETF language tags like \'en\'')
@ -454,6 +457,7 @@ def _real_main():
'writeinfojson': opts.writeinfojson,
'writesubtitles': opts.writesubtitles,
'onlysubtitles': opts.onlysubtitles,
'allsubtitles': opts.allsubtitles,
'subtitleslang': opts.subtitleslang,
'matchtitle': decodeOption(opts.matchtitle),
'rejecttitle': decodeOption(opts.rejecttitle),