mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 21:03:57 +00:00
0275749999
Due to the change to set the locale to UTF-8 in run.rb
21 lines
471 B
Ruby
21 lines
471 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 "--subtitle-charset -1:ISO-8859-5 data/textsubs/shortened_timecodes.srt"
|
|
hashes << hash_tmp
|
|
|
|
merge "--subtitle-charset -1:ISO-8859-5 data/textsubs/timecodes_with_spaces.srt"
|
|
hashes << hash_tmp
|
|
|
|
return hashes.join('-')
|
|
end
|
|
end
|
|
|