diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-09-23 02:30:03 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2017-09-23 02:30:03 +0800 |
commit | 8c2895305dc09920055611c8120f5a65fcd2614f (patch) | |
tree | 4dca59b87893607514e1502b59e3a09bd90443c6 /youtube_dl/options.py | |
parent | 8c6919e4331e1cd44f50e700e8fc4e630d913a2f (diff) |
[options] Accept lrc as a subtitle conversion target format (closes #14292)
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r-- | youtube_dl/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 38439c971..4c0455044 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -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) |