mkvtoolnix/tests/test-0025sync_vorbis.rb

16 lines
281 B
Ruby
Raw Normal View History

2004-08-25 21:55:39 +00:00
#!/usr/bin/ruby -w
2021-07-07 14:06:32 +00:00
class T_0025sync_vorbis < Test
2004-08-25 21:55:39 +00:00
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