mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 12:27:21 +00:00
9 lines
264 B
Ruby
9 lines
264 B
Ruby
|
#!/usr/bin/ruby -w
|
||
|
|
||
|
# T_616more_than_128_tracks
|
||
|
describe "mkvmerge / more than 128 tracks"
|
||
|
|
||
|
input = (1..130).map { |i| "data/subtitles/srt/ven.srt" }.join(" ")
|
||
|
test_merge input, :output => "#{tmp}-1", :keep_tmp => true
|
||
|
test_merge "#{tmp}-1", :output => "#{tmp}-2"
|