mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +00:00
85eecd0007
AVIMux GUI produces files in which track headers are stored multiple times. mkvmerge must only report the tracks found once (matched by their track number element). Fix for bug 609.
14 lines
274 B
Ruby
14 lines
274 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_288identify_files_by_amg < Test
|
|
def description
|
|
"mkvmerge / identify on files created by AMG"
|
|
end
|
|
|
|
def run
|
|
sys "../src/mkvmerge --identify-verbose data/mkv/amg_sample.mkv | grep '^Track' | wc -l > #{tmp}", 0
|
|
hash_tmp
|
|
end
|
|
end
|
|
|