@Stability(value=Stable)
public static interface CfnChannel.VideoSelectorProperty
extends software.amazon.jsii.JsiiSerializable
The parent of this entity is InputSettings.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.medialive.*;
VideoSelectorProperty videoSelectorProperty = VideoSelectorProperty.builder()
.colorSpace("colorSpace")
.colorSpaceSettings(VideoSelectorColorSpaceSettingsProperty.builder()
.hdr10Settings(Hdr10SettingsProperty.builder()
.maxCll(123)
.maxFall(123)
.build())
.build())
.colorSpaceUsage("colorSpaceUsage")
.selectorSettings(VideoSelectorSettingsProperty.builder()
.videoSelectorPid(VideoSelectorPidProperty.builder()
.pid(123)
.build())
.videoSelectorProgramId(VideoSelectorProgramIdProperty.builder()
.programId(123)
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannel.VideoSelectorProperty.Builder
A builder for
CfnChannel.VideoSelectorProperty |
static class |
CfnChannel.VideoSelectorProperty.Jsii$Proxy
An implementation for
CfnChannel.VideoSelectorProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannel.VideoSelectorProperty.Builder |
builder() |
default String |
getColorSpace()
Specifies the color space of an input.
|
default Object |
getColorSpaceSettings()
Settings to configure color space settings in the incoming video.
|
default String |
getColorSpaceUsage()
Applies only if colorSpace is a value other than Follow.
|
default Object |
getSelectorSettings()
Information about the video to select from the content.
|
@Stability(value=Stable) @Nullable default String getColorSpace()
This setting works in tandem with colorSpaceConversion to determine if MediaLive will perform any conversion.
@Stability(value=Stable) @Nullable default Object getColorSpaceSettings()
@Stability(value=Stable) @Nullable default String getColorSpaceUsage()
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.
@Stability(value=Stable) @Nullable default Object getSelectorSettings()
@Stability(value=Stable) static CfnChannel.VideoSelectorProperty.Builder builder()
Copyright © 2022. All rights reserved.