mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
14 lines
255 B
Ruby
14 lines
255 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_293aac_adif_misdetected_as_video < Test
|
|
def description
|
|
"mkvmerge / AAC with ADIF headers misdetected as video"
|
|
end
|
|
|
|
def run
|
|
sys "../src/mkvmerge --identify data/aac/aac_adif.aac", 3
|
|
($? >> 8).to_s
|
|
end
|
|
end
|
|
|