Class: Aws::ElasticTranscoder::Types::DetectedProperties
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ElasticTranscoder::Types::DetectedProperties
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-elastictranscoder/types.rb
 
Overview
The detected properties of the input file. Elastic Transcoder identifies these values from the input file.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #duration_millis  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The detected duration of the input file, in milliseconds.
 - 
  
    
      #file_size  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The detected file size of the input file, in bytes.
 - 
  
    
      #frame_rate  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The detected frame rate of the input file, in frames per second.
 - 
  
    
      #height  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The detected height of the input file, in pixels.
 - 
  
    
      #width  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The detected width of the input file, in pixels.
 
Instance Attribute Details
#duration_millis ⇒ Integer
The detected duration of the input file, in milliseconds.
      1324 1325 1326 1327 1328 1329 1330 1331 1332  | 
    
      # File 'lib/aws-sdk-elastictranscoder/types.rb', line 1324 class DetectedProperties < Struct.new( :width, :height, :frame_rate, :file_size, :duration_millis) SENSITIVE = [] include Aws::Structure end  | 
  
#file_size ⇒ Integer
The detected file size of the input file, in bytes.
      1324 1325 1326 1327 1328 1329 1330 1331 1332  | 
    
      # File 'lib/aws-sdk-elastictranscoder/types.rb', line 1324 class DetectedProperties < Struct.new( :width, :height, :frame_rate, :file_size, :duration_millis) SENSITIVE = [] include Aws::Structure end  | 
  
#frame_rate ⇒ String
The detected frame rate of the input file, in frames per second.
      1324 1325 1326 1327 1328 1329 1330 1331 1332  | 
    
      # File 'lib/aws-sdk-elastictranscoder/types.rb', line 1324 class DetectedProperties < Struct.new( :width, :height, :frame_rate, :file_size, :duration_millis) SENSITIVE = [] include Aws::Structure end  | 
  
#height ⇒ Integer
The detected height of the input file, in pixels.
      1324 1325 1326 1327 1328 1329 1330 1331 1332  | 
    
      # File 'lib/aws-sdk-elastictranscoder/types.rb', line 1324 class DetectedProperties < Struct.new( :width, :height, :frame_rate, :file_size, :duration_millis) SENSITIVE = [] include Aws::Structure end  | 
  
#width ⇒ Integer
The detected width of the input file, in pixels.
      1324 1325 1326 1327 1328 1329 1330 1331 1332  | 
    
      # File 'lib/aws-sdk-elastictranscoder/types.rb', line 1324 class DetectedProperties < Struct.new( :width, :height, :frame_rate, :file_size, :duration_millis) SENSITIVE = [] include Aws::Structure end  |