mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +00:00
25 lines
571 B
Ruby
Executable File
25 lines
571 B
Ruby
Executable File
#!/usr/bin/ruby -w
|
|
|
|
class T_247attachment_selection < Test
|
|
def description
|
|
return "mkvmerge / --attachments option"
|
|
end
|
|
|
|
def run
|
|
src = "data/mkv/attachments.mkv"
|
|
merge(src, 1)
|
|
result = hash_tmp
|
|
|
|
merge("--attachments 1,3,5 #{src}", 1)
|
|
result += "-" + hash_tmp
|
|
|
|
merge("--attachments 2,4 #{src}", 1)
|
|
result += "-" + hash_tmp
|
|
|
|
merge("--split 40s --split-max-files 2 --attachments 1:all,2:first,3:first,4:first,5:all #{src}", 1)
|
|
result += "-" + hash_file("#{tmp}-001") + "+" + hash_file("#{tmp}-002")
|
|
|
|
return result
|
|
end
|
|
end
|