mkvtoolnix/tests/test-658X_av1.rb
Moritz Bunkus 84d294aa6f
AV1 packetizer: set frame durations
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.
2020-10-01 12:50:03 +02:00

12 lines
251 B
Ruby
Executable File

#!/usr/bin/ruby -w
# T_658X_av1
describe "mkvextract / AV1 to IVF"
test "extraction to IVF" do
extract "data/av1/av1.webm", 0 => "#{tmp}-1"
merge "#{tmp}-1", :output => "#{tmp}-2"
(1..2).map { |idx| hash_file("#{tmp}-#{idx}") }.join('-')
end