mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-01 15:56:59 +00:00
15 lines
315 B
Ruby
15 lines
315 B
Ruby
|
#!/usr/bin/ruby -w
|
||
|
|
||
|
class T_219srt_short_timecodes < Test
|
||
|
def description
|
||
|
return "mkvmerge / SRT subs with short timecodes / in(SRT)"
|
||
|
end
|
||
|
|
||
|
def run
|
||
|
merge("'data/textsubs/Marchen Awakens Romance - 40.srt' " +
|
||
|
"'data/textsubs/Marchen Awakens Romance - 41.srt'")
|
||
|
return hash_tmp
|
||
|
end
|
||
|
end
|
||
|
|