mkvtoolnix/tests/test-015splitting_by_time.rb

18 lines
373 B
Ruby
Raw Normal View History

2004-08-19 19:37:07 +00:00
#!/usr/bin/ruby -w
class T_015splitting_by_time < Test
2004-08-25 17:23:07 +00:00
def description
return "mkvmerge / splitting by time / in(AVI)"
2004-08-19 19:37:07 +00:00
end
def run
2004-08-30 22:17:55 +00:00
merge(tmp + "-%03d", "--split-max-files 2 --split 40s data/avi/v.avi")
2004-08-19 19:37:07 +00:00
hash = hash_file(tmp + "-001") + "-" + hash_file(tmp + "-002")
File.unlink(tmp + "-001")
File.unlink(tmp + "-002")
return hash
end
end