mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-22 19:13:14 +00:00
15 lines
348 B
Ruby
15 lines
348 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
# T_368alac
|
|
describe "mkvmerge / ALAC from CAF, MP4 and Matroska"
|
|
|
|
%w{othertest-itunes.m4a test-ffmpeg.caf}.each do |file_name|
|
|
test_merge "data/alac/#{file_name}"
|
|
end
|
|
|
|
test_merge "data/alac/test-alacconvert.caf", :keep_tmp => true
|
|
test "reading from Matroska" do
|
|
merge tmp, :output => "#{tmp}-2"
|
|
hash_file "#{tmp}-2"
|
|
end
|