mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 21:03:57 +00:00
594d0e9264
Fix for bug 483.
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", "3:#{tmp}3 4:#{tmp}4"
|
|
result = hash_file(tmp + "3") + "-" + hash_file(tmp + "4")
|
|
File.unlink(tmp + "3")
|
|
File.unlink(tmp + "4")
|
|
|
|
return result
|
|
end
|
|
end
|
|
|