mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 04:11:44 +00:00
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
|