Add postprocessor for converting subtitles (closes #4954)

This commit is contained in:
Jaime Marquínez Ferrándiz 2015-02-28 14:43:24 +01:00
parent 0f2c0d335b
commit e9fade72f3
4 changed files with 52 additions and 0 deletions

View file

@ -751,6 +751,10 @@ def parseOpts(overrideArguments=None):
'--exec',
metavar='CMD', dest='exec_cmd',
help='Execute a command on the file after downloading, similar to find\'s -exec syntax. Example: --exec \'adb push {} /sdcard/Music/ && rm {}\'')
postproc.add_option(
'--convert-subtitles', '--convert-subs',
metavar='FORMAT', dest='convertsubtitles', default=None,
help='Convert the subtitles to other format (currently supported: srt|ass|vtt)')
parser.add_option_group(general)
parser.add_option_group(network)