aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/options.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2017-09-23 02:30:03 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2017-09-23 02:30:03 +0800
commit8c2895305dc09920055611c8120f5a65fcd2614f (patch)
tree4dca59b87893607514e1502b59e3a09bd90443c6 /youtube_dl/options.py
parent8c6919e4331e1cd44f50e700e8fc4e630d913a2f (diff)
downloadyoutube-dl-8c2895305dc09920055611c8120f5a65fcd2614f.tar.xz
[options] Accept lrc as a subtitle conversion target format (closes #14292)
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r--youtube_dl/options.py2
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)