mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +00:00
17 lines
331 B
Ruby
17 lines
331 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_215X_codec_extradata_avi < Test
|
|
def description
|
|
return "mkvextract / codec extradata after BITMAPINFOHEADER"
|
|
end
|
|
|
|
def run
|
|
merge("data/avi/extradata.avi")
|
|
hash = hash_file(tmp) + "-"
|
|
xtr_tracks(tmp, "1:#{tmp}-x.avi")
|
|
hash += hash_file("#{tmp}-x.avi")
|
|
return hash
|
|
end
|
|
end
|
|
|