mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 11:54:01 +00:00
2e238ed122
That version fixes writing block groups and simple blocks for tracks with track number 128 (see #2103). Also adds a test case for writing 130 tracks.
9 lines
264 B
Ruby
Executable File
9 lines
264 B
Ruby
Executable File
#!/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"
|