mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 12:53:50 +00:00
31 lines
939 B
Ruby
31 lines
939 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
# T_371doc_and_read_version
|
|
describe "mkvmerge / DocTypeVersion and DocTypeReadVersion"
|
|
|
|
test "all versions" do
|
|
sources = "data/avi/v.avi data/subtitles/srt/ven.srt"
|
|
hashes = []
|
|
hacks = []
|
|
|
|
[ [ nil, 7 ], [ 'no_cue_duration', 7 ], [ 'no_cue_relative_position', 7 ], [ nil, 7 ], [], [ 'no_simpleblocks', 7 ], [ nil, 7 ], [] ].each do |spec|
|
|
hacks << spec.first if spec.first
|
|
command = []
|
|
command << ('--engage ' + hacks.join(',')) if !hacks.empty?
|
|
command << "--stereo-mode 0:#{spec.last}" if spec.last
|
|
command << sources
|
|
|
|
command = command.join ' '
|
|
|
|
merge command
|
|
output = info(tmp, :output => :return).join('')
|
|
|
|
type_version = /Doc type version:\s+(\d+)/.match(output) ? $1 : '<undef>'
|
|
type_read_version = /Doc type read version:\s+(\d+)/.match(output) ? $1 : '<undef>'
|
|
|
|
hashes << "#{type_version}+#{type_read_version}"
|
|
end
|
|
|
|
hashes.join('-')
|
|
end
|