1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Cope with videos with undefined display aspect ratios

This commit is contained in:
George Claghorn 2018-01-20 14:47:04 -05:00
parent 9bf41f2495
commit cf1c48478d
3 changed files with 15 additions and 2 deletions

View file

@ -55,8 +55,12 @@ module ActiveStorage
def display_aspect_ratio
if descriptor = video_stream["display_aspect_ratio"]
terms = descriptor.split(":", 2).collect(&:to_i)
terms if terms.count == 2 && terms.min >= 0
if terms = descriptor.split(":", 2)
numerator = Integer(terms[0])
denominator = Integer(terms[1])
[numerator, denominator] unless numerator == 0
end
end
end

View file

@ -37,6 +37,15 @@ class ActiveStorage::Analyzer::VideoAnalyzerTest < ActiveSupport::TestCase
assert_equal [16, 9], metadata[:display_aspect_ratio]
end
test "analyzing a video with an undefined display aspect ratio" do
blob = create_file_blob(filename: "video_with_undefined_display_aspect_ratio.mp4", content_type: "video/mp4")
metadata = extract_metadata_from(blob)
assert_equal 640, metadata[:width]
assert_equal 480, metadata[:height]
assert_nil metadata[:display_aspect_ratio]
end
test "analyzing a video without a video stream" do
blob = create_file_blob(filename: "video_without_video_stream.mp4", content_type: "video/mp4")
metadata = extract_metadata_from(blob)