mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 12:53:50 +00:00
a57fa053f4
Fix for bug 450.
16 lines
293 B
Ruby
16 lines
293 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_257theora_v1_1 < Test
|
|
def description
|
|
return "mkvmerge / Theora from Ogg created with libtheora v1.1 / in(OGG)"
|
|
end
|
|
|
|
def run
|
|
merge("data/ogg/video-1.0.ogv")
|
|
h = hash_tmp
|
|
merge("data/ogg/video-1.1.ogv")
|
|
return h + "-" + hash_tmp
|
|
end
|
|
end
|
|
|