Class: Aws::MediaConvert::Types::VideoProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::VideoProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
Overview
Details about the media file's video track.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bit_depth ⇒ Integer
The number of bits used per color component such as 8, 10, or 12 bits.
-
#bit_rate ⇒ Integer
The bit rate of the video track, in bits per second.
-
#codec_metadata ⇒ Types::CodecMetadata
Codec-specific parameters parsed from the video essence headers.
-
#color_primaries ⇒ String
The color space primaries of the video track, defining the red, green, and blue color coordinates used for the video.
-
#display_aspect_ratio ⇒ Types::AspectRatio
An aspect ratio expressed as a fraction with numerator and denominator values, reduced to lowest terms.
-
#frame_rate ⇒ Types::FrameRate
The frame rate of the video or audio track, expressed as a fraction with numerator and denominator values.
-
#hdr_metadata ⇒ Types::HdrMetadata
HDR (High Dynamic Range) metadata extracted from the container, including mastering display color volume and content light level information.
-
#height ⇒ Integer
The height of the video track, in pixels.
-
#matrix_coefficients ⇒ String
The color space matrix coefficients of the video track, defining how RGB color values are converted to and from YUV color space.
-
#rotation ⇒ Integer
The clockwise rotation angle of the video track, in degrees, as derived from container-level metadata (e.g. the MP4 tkhd transformation matrix or the Matroska ProjectionPoseRoll element).
-
#sample_aspect_ratio ⇒ Types::AspectRatio
An aspect ratio expressed as a fraction with numerator and denominator values, reduced to lowest terms.
-
#transfer_characteristics ⇒ String
The color space transfer characteristics of the video track, defining the relationship between linear light values and the encoded signal values.
-
#width ⇒ Integer
The width of the video track, in pixels.
Instance Attribute Details
#bit_depth ⇒ Integer
The number of bits used per color component such as 8, 10, or 12 bits. Standard range (SDR) video typically uses 8-bit, while 10-bit is common for high dynamic range (HDR).
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |
#bit_rate ⇒ Integer
The bit rate of the video track, in bits per second.
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |
#codec_metadata ⇒ Types::CodecMetadata
Codec-specific parameters parsed from the video essence headers. This information provides detailed technical specifications about how the video was encoded, including profile settings, resolution details, and color space information that can help you understand the source video characteristics and make informed encoding decisions.
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |
#color_primaries ⇒ String
The color space primaries of the video track, defining the red, green, and blue color coordinates used for the video. This information helps ensure accurate color reproduction during playback and transcoding.
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |
#display_aspect_ratio ⇒ Types::AspectRatio
An aspect ratio expressed as a fraction with numerator and denominator values, reduced to lowest terms. Used for the sample (pixel) aspect ratio and the display aspect ratio of a video track. For example, a 720x576 anamorphic track has a sample aspect ratio of 64 / 45 and a display aspect ratio of 16 / 9. A video track can declare an aspect ratio in two independent places, and MediaConvert reports each one where it was found rather than choosing between them. The ratio declared by the container appears on the video track itself, and the ratio declared by the video essence appears under codecMetadata. When a file declares an aspect ratio in only one of the two places, the other is null; when it declares both and they disagree, you can compare them and decide which to use.
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |
#frame_rate ⇒ Types::FrameRate
The frame rate of the video or audio track, expressed as a fraction with numerator and denominator values.
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |
#hdr_metadata ⇒ Types::HdrMetadata
HDR (High Dynamic Range) metadata extracted from the container, including mastering display color volume and content light level information. This metadata is present in HDR10 and similar HDR content.
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |
#height ⇒ Integer
The height of the video track, in pixels.
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |
#matrix_coefficients ⇒ String
The color space matrix coefficients of the video track, defining how RGB color values are converted to and from YUV color space. This affects color accuracy during encoding and decoding processes.
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |
#rotation ⇒ Integer
The clockwise rotation angle of the video track, in degrees, as derived from container-level metadata (e.g. the MP4 tkhd transformation matrix or the Matroska ProjectionPoseRoll element). Common values are 90, 180, and 270. This field is null when no rotation metadata is present or when the rotation is 0 degrees. For MP4, non-standard transformation matrices also yield null.
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |
#sample_aspect_ratio ⇒ Types::AspectRatio
An aspect ratio expressed as a fraction with numerator and denominator values, reduced to lowest terms. Used for the sample (pixel) aspect ratio and the display aspect ratio of a video track. For example, a 720x576 anamorphic track has a sample aspect ratio of 64 / 45 and a display aspect ratio of 16 / 9. A video track can declare an aspect ratio in two independent places, and MediaConvert reports each one where it was found rather than choosing between them. The ratio declared by the container appears on the video track itself, and the ratio declared by the video essence appears under codecMetadata. When a file declares an aspect ratio in only one of the two places, the other is null; when it declares both and they disagree, you can compare them and decide which to use.
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |
#transfer_characteristics ⇒ String
The color space transfer characteristics of the video track, defining the relationship between linear light values and the encoded signal values. This affects brightness and contrast reproduction.
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |
#width ⇒ Integer
The width of the video track, in pixels.
16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 16200 class VideoProperties < Struct.new( :bit_depth, :bit_rate, :codec_metadata, :color_primaries, :display_aspect_ratio, :frame_rate, :hdr_metadata, :height, :matrix_coefficients, :rotation, :sample_aspect_ratio, :transfer_characteristics, :width) SENSITIVE = [] include Aws::Structure end |