mkvtoolnix/tests/test-0033timecode_scale.rb
2021-07-07 16:10:13 +02:00

21 lines
443 B
Ruby
Executable File

#!/usr/bin/ruby -w
# T_033timecode_scale
describe "mkvmerge / timecode scale / in(AVI,MP3)"
test "timecode/timestamp scale" do
hash = []
merge("--timecode-scale 1000000 data/simple/v.mp3")
hash << hash_tmp
merge("--timecode-scale -1 data/avi/v.avi")
hash << hash_tmp
merge("--timestamp-scale 1000000 data/simple/v.mp3")
hash << hash_tmp
merge("--timestamp-scale -1 data/avi/v.avi")
hash << hash_tmp
hash.join('-')
end