2005-03-06 14:28:26 +00:00
|
|
|
#!/usr/bin/ruby -w
|
|
|
|
|
2021-07-07 14:06:32 +00:00
|
|
|
class T_0208cat_and_splitting < Test
|
2005-03-06 14:28:26 +00:00
|
|
|
def description
|
|
|
|
return "mkvmerge / concatenation and splitting at the same time"
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
|
|
|
merge(tmp + "-%03d ", "--split-max-files 2 --split 4m data/avi/v.avi " +
|
|
|
|
"+data/avi/v.avi")
|
|
|
|
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
|
|
|
|
|