mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-23 19:31:44 +00:00
18 lines
378 B
Ruby
18 lines
378 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_023no_x < Test
|
|
def description
|
|
return "mkvmerge / various --no-xyz options / in(*)"
|
|
end
|
|
|
|
def run
|
|
merge("-A --no-attachments data/mkv/complex.mkv")
|
|
hash = hash_tmp
|
|
merge("-D --no-chapters data/mkv/complex.mkv")
|
|
hash += "-" + hash_tmp
|
|
merge("-S --no-tags data/mkv/complex.mkv")
|
|
return hash + "-" + hash_tmp
|
|
end
|
|
end
|
|
|