Class: Aws::IVSRealTime::Types::Video
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVSRealTime::Types::Video
- Defined in:
- gems/aws-sdk-ivsrealtime/lib/aws-sdk-ivsrealtime/types.rb
Overview
Settings for video.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bitrate ⇒ Integer
Bitrate for generated output, in bps.
-
#framerate ⇒ Float
Video frame rate, in fps.
-
#height ⇒ Integer
Video-resolution height.
-
#width ⇒ Integer
Video-resolution width.
Instance Attribute Details
#bitrate ⇒ Integer
Bitrate for generated output, in bps. Default: 2500000.
2776 2777 2778 2779 2780 2781 2782 2783 |
# File 'gems/aws-sdk-ivsrealtime/lib/aws-sdk-ivsrealtime/types.rb', line 2776 class Video < Struct.new( :width, :height, :framerate, :bitrate) SENSITIVE = [] include Aws::Structure end |
#framerate ⇒ Float
Video frame rate, in fps. Default: 30.
2776 2777 2778 2779 2780 2781 2782 2783 |
# File 'gems/aws-sdk-ivsrealtime/lib/aws-sdk-ivsrealtime/types.rb', line 2776 class Video < Struct.new( :width, :height, :framerate, :bitrate) SENSITIVE = [] include Aws::Structure end |
#height ⇒ Integer
Video-resolution height. This must be an even number. Note that the
maximum value is determined by width
times height
, such that the
maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default:
720.
2776 2777 2778 2779 2780 2781 2782 2783 |
# File 'gems/aws-sdk-ivsrealtime/lib/aws-sdk-ivsrealtime/types.rb', line 2776 class Video < Struct.new( :width, :height, :framerate, :bitrate) SENSITIVE = [] include Aws::Structure end |
#width ⇒ Integer
Video-resolution width. This must be an even number. Note that the
maximum value is determined by width
times height
, such that the
maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default:
1280.
2776 2777 2778 2779 2780 2781 2782 2783 |
# File 'gems/aws-sdk-ivsrealtime/lib/aws-sdk-ivsrealtime/types.rb', line 2776 class Video < Struct.new( :width, :height, :framerate, :bitrate) SENSITIVE = [] include Aws::Structure end |