mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-30 14:58:50 +00:00
21 lines
308 B
Ruby
21 lines
308 B
Ruby
|
#!/usr/bin/ruby -w
|
||
|
|
||
|
class T_240dts_hd < Test
|
||
|
def description
|
||
|
return "mkvmerge / DTS-HD / in(*)"
|
||
|
end
|
||
|
|
||
|
def run
|
||
|
hashes = Array.new
|
||
|
|
||
|
merge("data/simple/dts-hd.dts")
|
||
|
hashes << hash_tmp
|
||
|
|
||
|
merge("-D data/vob/VC1WithDTSHD.EVO")
|
||
|
hashes << hash_tmp
|
||
|
|
||
|
return hashes.join("-")
|
||
|
end
|
||
|
end
|
||
|
|