mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 12:53:50 +00:00
16 lines
296 B
Ruby
16 lines
296 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_248mpeg2 < Test
|
|
def description
|
|
return "mkvmerge / MPEG-1/2 video files / in(M2V)"
|
|
end
|
|
|
|
def run
|
|
merge("data/mpeg12/1080i60.m2v", 1)
|
|
hash = hash_tmp
|
|
merge("data/mpeg12/changing_sequence_headers.m2v", 1)
|
|
return hash + "-" + hash_tmp
|
|
end
|
|
end
|
|
|