mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 12:53:50 +00:00
14 lines
285 B
Ruby
14 lines
285 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_258srt_negative_timecodes < Test
|
|
def description
|
|
return "mkvmerge / SRT files with negative timecodes / in(SRT)"
|
|
end
|
|
|
|
def run
|
|
merge 1, "--subtitle-charset -1:ISO-8859-1 data/subtitles/srt/negative_timecodes.srt"
|
|
return hash_tmp
|
|
end
|
|
end
|
|
|