mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 12:53:50 +00:00
16a9a7d1e6
Fix for bug 689.
18 lines
395 B
Ruby
18 lines
395 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_263ass_missing_text_in_format < Test
|
|
def description
|
|
return "mkvextract / ASS: missing column 'text' in format line"
|
|
end
|
|
|
|
def run
|
|
xtr_tracks "data/mkv/ass_missing_text_in_format.mkv", "2:#{tmp}2 3:#{tmp}3"
|
|
result = hash_file(tmp + "2") + "-" + hash_file(tmp + "3")
|
|
File.unlink(tmp + "2")
|
|
File.unlink(tmp + "3")
|
|
|
|
return result
|
|
end
|
|
end
|
|
|