mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-28 13:57:22 +00:00
18 lines
322 B
Ruby
18 lines
322 B
Ruby
|
#!/usr/bin/ruby -w
|
||
|
|
||
|
class T_259mp4_chapters_text_trak < Test
|
||
|
def description
|
||
|
return "mkvmerge / chapters in 'text' tracks / in(MP4)"
|
||
|
end
|
||
|
|
||
|
def run
|
||
|
merge "data/mp4/o12-short.m4v"
|
||
|
hash = [ hash_tmp ]
|
||
|
merge "--no-chapters data/mp4/o12-short.m4v"
|
||
|
hash << hash_tmp
|
||
|
|
||
|
return hash.join "-"
|
||
|
end
|
||
|
end
|
||
|
|