mkvtoolnix/tests/test-025sync_vorbis.rb

16 lines
280 B
Ruby
Raw Normal View History

2004-08-25 21:55:39 +00:00
#!/usr/bin/ruby -w
class T_025sync_vorbis < Test
def description
return "mkvmerge / Vorbis sync / in(Ogg)"
end
def run
2004-08-30 22:17:55 +00:00
merge("--sync -1:500 data/ogg/v.ogg")
2004-08-25 21:55:39 +00:00
hash = hash_tmp
2004-08-30 22:17:55 +00:00
merge("--sync -1:-500 data/ogg/v.ogg")
2004-08-25 21:55:39 +00:00
return hash + "-" + hash_tmp
end
end