[options] Accept lrc as a subtitle conversion target format (closes #14292)
authorYen Chi Hsuan <yan12125@gmail.com>
Fri, 22 Sep 2017 18:30:03 +0000 (02:30 +0800)
committerYen Chi Hsuan <yan12125@gmail.com>
Fri, 22 Sep 2017 18:30:03 +0000 (02:30 +0800)
ChangeLog
youtube_dl/__init__.py
youtube_dl/options.py

index ba9260e3eb348713dd38fda4b1b38a3ff23cec7b..42ba879b1c18a8534c6bc3ad9d2475d0c9a8d916 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 version <unreleased>
 
 Core
++ [options] Accept lrc as a subtitle conversion target format (#14292)
 * [utils] Fix handling raw TTML subtitles (#14191)
 
 
index c4589411e1977d2ae8b4a69620ad2a9d1325fdac..ba684a0754bb4a70148148334d1bee474a1d234b 100644 (file)
@@ -206,7 +206,7 @@ def _real_main(argv=None):
         if opts.recodevideo not in ['mp4', 'flv', 'webm', 'ogg', 'mkv', 'avi']:
             parser.error('invalid video recode format specified')
     if opts.convertsubtitles is not None:
-        if opts.convertsubtitles not in ['srt', 'vtt', 'ass']:
+        if opts.convertsubtitles not in ['srt', 'vtt', 'ass', 'lrc']:
             parser.error('invalid subtitle format specified')
 
     if opts.date is not None:
index 38439c97165e18e37d9bf4cd3ebf906f099c9b30..4c04550444308832862517d881539ebe1b417bfe 100644 (file)
@@ -847,7 +847,7 @@ def parseOpts(overrideArguments=None):
     postproc.add_option(
         '--convert-subs', '--convert-subtitles',
         metavar='FORMAT', dest='convertsubtitles', default=None,
-        help='Convert the subtitles to other format (currently supported: srt|ass|vtt)')
+        help='Convert the subtitles to other format (currently supported: srt|ass|vtt|lrc)')
 
     parser.add_option_group(general)
     parser.add_option_group(network)