mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-27 13:23:22 +00:00
21 lines
407 B
Ruby
21 lines
407 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_245srt_timecode_formats < Test
|
|
def description
|
|
return "mkvmerge / SRT files with various timecode formats (shortened, spaces etc) / in(SRT)"
|
|
end
|
|
|
|
def run
|
|
hashes = Array.new
|
|
|
|
merge("data/textsubs/shortened_timecodes.srt")
|
|
hashes << hash_tmp
|
|
|
|
merge("data/textsubs/timecodes_with_spaces.srt")
|
|
hashes << hash_tmp
|
|
|
|
return hashes.join('-')
|
|
end
|
|
end
|
|
|