mkvtoolnix/tests/test-026sync_pcm.rb

16 lines
278 B
Ruby
Raw Normal View History

2004-08-25 21:55:39 +00:00
#!/usr/bin/ruby -w
class T_026sync_pcm < Test
def description
return "mkvmerge / PCM sync / in(WAV)"
end
def run
2004-08-30 22:17:55 +00:00
merge("--sync 0:500 data/simple/v.wav")
2004-08-25 21:55:39 +00:00
hash = hash_tmp
2004-08-30 22:17:55 +00:00
merge("--sync 0:-500 data/simple/v.wav")
2004-08-25 21:55:39 +00:00
return hash + "-" + hash_tmp
end
end