method

width

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: VideoAnalyzer
width() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activestorage/lib/active_storage/analyzer/video_analyzer.rb, line 34
      def width
        if rotated?
          computed_height || encoded_height
        else
          encoded_width
        end
      end
Register or log in to add new notes.