mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 11:54:01 +00:00
3571f4ab4c
Part of the implementation of #2261.
12 lines
251 B
Ruby
Executable File
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
|