mkvtoolnix/tests/test-658X_av1.rb
Moritz Bunkus 3571f4ab4c
extract: add support for extracting AV1 to IVF
Part of the implementation of #2261.
2018-10-07 23:06:47 +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