mkvtoolnix/tests/test-0021aspect_ratio.rb

16 lines
305 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_0021aspect_ratio < Test
2004-08-25 21:55:39 +00:00
def description
return "mkvmerge / aspect ratio / in(AVI)"
end
def run
2004-08-30 22:17:55 +00:00
merge("-A --aspect-ratio 0:16/9 data/avi/v.avi")
2004-08-25 21:55:39 +00:00
hash = hash_tmp
2004-08-30 22:17:55 +00:00
merge("-A --aspect-ratio 0:4.333 data/avi/v.avi")
2004-08-25 21:55:39 +00:00
return hash + "-" + hash_tmp
end
end