mkvtoolnix/tests/test-532chapter_generation_when_appending.rb

18 lines
779 B
Ruby
Raw Normal View History

#!/usr/bin/ruby -w
file = "data/avi/v-h264-aac.avi"
# T_532chapter_generation_when_appending
describe "mkvmerge / generate chapter »when-appending«"
def hash_results max
( (1..max).collect { |i| hash_file(sprintf("%s-%02d", tmp, i)) } + [ File.exists?(sprintf("%s-%02d", tmp, max + 1)) ? 'bad' : 'ok' ]).join '+'
end
test_merge "#{file} + #{file} + #{file}", :args => "--generate-chapters when-appending"
test_merge "#{file} + #{file} + #{file}", :args => "--chapter-language ger --generate-chapters when-appending"
test "creation and splitting" do
merge "--chapter-language ger --generate-chapters when-appending --split 30s #{file} + #{file} + #{file}", :output => "#{tmp}-%02d"
hash_results 7
end
test_merge "#{file}", :args => "--generate-chapters when-appending"