mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 04:11:44 +00:00
84d294aa6f
If no duration is set and a file is appended, the first in file N+1 will have the same timestamp as the last frame in file N. Fixes #2937.
9 lines
233 B
Ruby
Executable File
9 lines
233 B
Ruby
Executable File
#!/usr/bin/ruby -w
|
|
|
|
# T_711av1_last_frame_duration_when_appending
|
|
describe "mkvmerge / AV1 frame durations & appending"
|
|
|
|
%w{ivf obu}.each do |ext|
|
|
test_merge((1..4).map { |idx| "data/av1/parts/v-00#{idx}.#{ext}" }.join(' + '))
|
|
end
|