2004-08-25 21:55:39 +00:00
|
|
|
#!/usr/bin/ruby -w
|
|
|
|
|
|
|
|
class T_032cues < Test
|
|
|
|
def description
|
|
|
|
return "mkvmerge / cues / in(AVI)"
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
2004-08-30 22:17:55 +00:00
|
|
|
merge("--cues 0:all --cues 1:iframes data/avi/v.avi")
|
2004-08-25 21:55:39 +00:00
|
|
|
return hash_tmp
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|