mkvtoolnix/tests/test-050X_ass.rb

19 lines
403 B
Ruby
Raw Normal View History

2004-09-29 09:41:22 +00:00
#!/usr/bin/ruby -w
class T_050X_ass < Test
def description
return "mkvextract / ASS subtitles / out(ASS)"
end
def run
my_hash = hash_file("data/ssa-ass/11.Magyar.ass")
2004-09-29 09:41:22 +00:00
my_tmp = tmp
merge("--sub-charset 0:ISO-8859-1 data/ssa-ass/11.Magyar.ass")
2004-09-29 09:41:22 +00:00
@tmp = nil
xtr_tracks(my_tmp, "-c ISO-8859-1 0:#{tmp}")
2004-09-29 09:41:22 +00:00
File.unlink(my_tmp)
return my_hash + "-" + hash_tmp
end
end