mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-22 19:13:14 +00:00
19 lines
294 B
Ruby
19 lines
294 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_0270ivf < Test
|
|
def description
|
|
return "mkvmerge / IVF with VP8"
|
|
end
|
|
|
|
def run
|
|
checksums = []
|
|
%w{live-stream sample yt3}.each do |file|
|
|
merge "data/webm/#{file}.ivf"
|
|
checksums << hash_tmp
|
|
end
|
|
|
|
return checksums.join '-'
|
|
end
|
|
end
|
|
|