mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-28 13:57:22 +00:00
0275749999
Due to the change to set the locale to UTF-8 in run.rb
37 lines
1.2 KiB
Ruby
37 lines
1.2 KiB
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_210splitting_and_chapters < Test
|
|
def description
|
|
return "mkvmerge / splitting and chapters / in(AVI)"
|
|
end
|
|
|
|
def run
|
|
merge tmp + "-%03d ", "--split-max-files 2 --split 4m data/avi/v.avi --chapter-charset ISO-8859-15 --chapters data/text/shortchaps.txt"
|
|
if (!FileTest.exist?(tmp + "-001"))
|
|
error("First split file does not exist.")
|
|
end
|
|
if (!FileTest.exist?(tmp + "-002"))
|
|
File.unlink(tmp + "-001")
|
|
error("Second split file does not exist.")
|
|
end
|
|
hash = hash_file(tmp + "-001") + "-" + hash_file(tmp + "-002")
|
|
File.unlink(tmp + "-001")
|
|
File.unlink(tmp + "-002")
|
|
|
|
merge tmp + "-%03d ", "--split-max-files 2 --split 4m data/avi/v.avi --chapter-charset ISO-8859-15 --chapters data/text/shortchaps.txt --link"
|
|
if (!FileTest.exist?(tmp + "-001"))
|
|
error("First split file does not exist.")
|
|
end
|
|
if (!FileTest.exist?(tmp + "-002"))
|
|
File.unlink(tmp + "-001")
|
|
error("Second split file does not exist.")
|
|
end
|
|
hash += "-" + hash_file(tmp + "-001") + "-" + hash_file(tmp + "-002")
|
|
File.unlink(tmp + "-001")
|
|
File.unlink(tmp + "-002")
|
|
|
|
return hash
|
|
end
|
|
end
|
|
|