mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 11:54:01 +00:00
18 lines
471 B
Ruby
18 lines
471 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_018attachments < Test
|
|
def description
|
|
return "mkvmerge / attachments / in(*)"
|
|
end
|
|
|
|
def run
|
|
merge("data/vde.srt --attachment-description 'Dummy description' " +
|
|
"--attachment-mime-type text/plain --attach-file data/vde.srt")
|
|
hash = hash_tmp
|
|
merge("data/vde.srt --attachment-description 'automatic MIME type test' " +
|
|
"--attach-file data/cuewithtags2.cue")
|
|
return hash + "-" + hash_tmp
|
|
end
|
|
end
|
|
|