mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
2dfb1996c5
Fix for bug 454.
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
|
|
|