mkvtoolnix/tests/test-670h265_interlaced.rb
Moritz Bunkus f383f8c78c
all: use H.265 instead of h.265
Second part of the fix of #2600.
2019-08-10 14:34:54 +02:00

13 lines
374 B
Ruby
Executable File

#!/usr/bin/ruby -w
# T_670h265_interlaced
describe "mkvmerge / HEVC/H.265 with interlaced fields, video height"
test "get dimensions" do
(identify_json("data/h265/interlaced1.265")["tracks"] +
identify_json("data/h265/interlaced2.ts")["tracks"]).
select { |t| t["type"] == "video" }.
map { |t| t["properties"]["pixel_dimensions"].to_s }.
join("+")
end