mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +00:00
f383f8c78c
Second part of the fix of #2600.
13 lines
374 B
Ruby
Executable File
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
|