mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +00:00
14 lines
254 B
Ruby
14 lines
254 B
Ruby
|
#!/usr/bin/ruby -w
|
||
|
|
||
|
class T_048X_chapters_ogmstyle < Test
|
||
|
def description
|
||
|
return "mkvextract / chapters (OGM style) / out(TXT)"
|
||
|
end
|
||
|
|
||
|
def run
|
||
|
sys("../src/mkvextract chapters data/mkv/complex.mkv -s &> #{tmp}")
|
||
|
return hash_tmp
|
||
|
end
|
||
|
end
|
||
|
|