Show / Hide Table of Contents

Class CfnChannel.VideoSelectorProperty

Information about the video to extract from the input. An input can contain only one video selector.

Inheritance
object
CfnChannel.VideoSelectorProperty
Implements
CfnChannel.IVideoSelectorProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.MediaLive
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnChannel.VideoSelectorProperty : CfnChannel.IVideoSelectorProperty
Syntax (vb)
Public Class CfnChannel.VideoSelectorProperty Implements CfnChannel.IVideoSelectorProperty
Remarks

The parent of this entity is InputSettings.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videoselector.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.MediaLive;

             var videoSelectorProperty = new VideoSelectorProperty {
                 ColorSpace = "colorSpace",
                 ColorSpaceSettings = new VideoSelectorColorSpaceSettingsProperty {
                     Hdr10Settings = new Hdr10SettingsProperty {
                         MaxCll = 123,
                         MaxFall = 123
                     }
                 },
                 ColorSpaceUsage = "colorSpaceUsage",
                 SelectorSettings = new VideoSelectorSettingsProperty {
                     VideoSelectorPid = new VideoSelectorPidProperty {
                         Pid = 123
                     },
                     VideoSelectorProgramId = new VideoSelectorProgramIdProperty {
                         ProgramId = 123
                     }
                 }
             };

Synopsis

Constructors

VideoSelectorProperty()

Information about the video to extract from the input. An input can contain only one video selector.

Properties

ColorSpace

Specifies the color space of an input.

ColorSpaceSettings

Settings to configure color space settings in the incoming video.

ColorSpaceUsage

Applies only if colorSpace is a value other than Follow.

SelectorSettings

Information about the video to select from the content.

Constructors

VideoSelectorProperty()

Information about the video to extract from the input. An input can contain only one video selector.

public VideoSelectorProperty()
Remarks

The parent of this entity is InputSettings.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videoselector.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.MediaLive;

             var videoSelectorProperty = new VideoSelectorProperty {
                 ColorSpace = "colorSpace",
                 ColorSpaceSettings = new VideoSelectorColorSpaceSettingsProperty {
                     Hdr10Settings = new Hdr10SettingsProperty {
                         MaxCll = 123,
                         MaxFall = 123
                     }
                 },
                 ColorSpaceUsage = "colorSpaceUsage",
                 SelectorSettings = new VideoSelectorSettingsProperty {
                     VideoSelectorPid = new VideoSelectorPidProperty {
                         Pid = 123
                     },
                     VideoSelectorProgramId = new VideoSelectorProgramIdProperty {
                         ProgramId = 123
                     }
                 }
             };

Properties

ColorSpace

Specifies the color space of an input.

public string? ColorSpace { get; set; }
Property Value

string

Remarks

This setting works in tandem with colorSpaceConversion to determine if MediaLive will perform any conversion.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videoselector.html#cfn-medialive-channel-videoselector-colorspace

ColorSpaceSettings

Settings to configure color space settings in the incoming video.

public object? ColorSpaceSettings { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videoselector.html#cfn-medialive-channel-videoselector-colorspacesettings

ColorSpaceUsage

Applies only if colorSpace is a value other than Follow.

public string? ColorSpaceUsage { get; set; }
Property Value

string

Remarks

This field controls how the value in the colorSpace field is used. Fallback means that when the input does include color space data, that data is used, but when the input has no color space data, the value in colorSpace is used. Choose fallback if your input is sometimes missing color space data, but when it does have color space data, that data is correct. Force means to always use the value in colorSpace. Choose force if your input usually has no color space data or might have unreliable color space data.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videoselector.html#cfn-medialive-channel-videoselector-colorspaceusage

SelectorSettings

Information about the video to select from the content.

public object? SelectorSettings { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videoselector.html#cfn-medialive-channel-videoselector-selectorsettings

Implements

CfnChannel.IVideoSelectorProperty
Back to top Generated by DocFX