mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-27 05:14:47 +00:00
13 lines
328 B
Ruby
13 lines
328 B
Ruby
|
#!/usr/bin/ruby -w
|
||
|
|
||
|
class T_277display_dimensions_fixing_aspect_ratio_usage < Test
|
||
|
def description
|
||
|
return "mkvmerge / fixing DisplayWidth/Height containing aspect ratio only"
|
||
|
end
|
||
|
|
||
|
def run
|
||
|
%w{ac3.mkv ar.mkv Handbrake-3441.mkv}.collect { |file| merge "data/mkv/aspect_ratio/#{file}" ; hash_tmp }.join "-"
|
||
|
end
|
||
|
end
|
||
|
|