Running subsai --help seems to specify to the user that they should include a dot in the subtitle format:
asolidtime ~> subsai --help
[lines excluded]
-f FORMAT, --format FORMAT, --subtitles-format FORMAT
Output subtitles format, available formats ['.srt', '.ass', '.ssa', '.sub', '.json',
'.txt', '.vtt']
But following this advice will spit out a file extension with two dots, since the program already adds a dot character to the end of the base name.
I figured this might still be useful if you want to prepend something to the subtitle format, e.g. -f 'autogenerated.vtt', so I just changed the help page of the CLI to exclude the dot:
asolidtime ~> subsai --help
[lines excluded]
-f FORMAT, --format FORMAT, --subtitles-format FORMAT
Output subtitles format, available formats ['srt', 'ass', 'ssa', 'sub', 'json',
'txt', 'vtt']
Running
subsai --help
seems to specify to the user that they should include a dot in the subtitle format:But following this advice will spit out a file extension with two dots, since the program already adds a dot character to the end of the base name.
I figured this might still be useful if you want to prepend something to the subtitle format, e.g.
-f 'autogenerated.vtt'
, so I just changed the help page of the CLI to exclude the dot: