@Stability(value=Stable)
public static interface CfnChannel.GlobalConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The parent of this entity is EncoderSettings.
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.*;
GlobalConfigurationProperty globalConfigurationProperty = GlobalConfigurationProperty.builder()
.initialAudioGain(123)
.inputEndAction("inputEndAction")
.inputLossBehavior(InputLossBehaviorProperty.builder()
.blackFrameMsec(123)
.inputLossImageColor("inputLossImageColor")
.inputLossImageSlate(InputLocationProperty.builder()
.passwordParam("passwordParam")
.uri("uri")
.username("username")
.build())
.inputLossImageType("inputLossImageType")
.repeatFrameMsec(123)
.build())
.outputLockingMode("outputLockingMode")
.outputTimingSource("outputTimingSource")
.supportLowFramerateInputs("supportLowFramerateInputs")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannel.GlobalConfigurationProperty.Builder
A builder for
CfnChannel.GlobalConfigurationProperty |
static class |
CfnChannel.GlobalConfigurationProperty.Jsii$Proxy
An implementation for
CfnChannel.GlobalConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannel.GlobalConfigurationProperty.Builder |
builder() |
default Number |
getInitialAudioGain()
The value to set the initial audio gain for the channel.
|
default String |
getInputEndAction()
Indicates the action to take when the current input completes (for example, end-of-file).
|
default Object |
getInputLossBehavior()
The settings for system actions when the input is lost.
|
default String |
getOutputLockingMode()
Indicates how MediaLive pipelines are synchronized.
|
default String |
getOutputTimingSource()
Indicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally might be locked to another source through NTP) or should be locked to the clock of the source that is providing the input stream.
|
default String |
getSupportLowFramerateInputs()
Adjusts the video input buffer for streams with very low video frame rates.
|
@Stability(value=Stable) @Nullable default Number getInitialAudioGain()
@Stability(value=Stable) @Nullable default String getInputEndAction()
When switchAndLoopInputs is configured, MediaLive restarts at the beginning of the first input. When "none" is configured, MediaLive transcodes either black, a solid color, or a user-specified slate images per the "Input Loss Behavior" configuration until the next input switch occurs (which is controlled through the Channel Schedule API).
@Stability(value=Stable) @Nullable default Object getInputLossBehavior()
@Stability(value=Stable) @Nullable default String getOutputLockingMode()
PIPELINELOCKING - MediaLive attempts to synchronize the output of each pipeline to the other. EPOCHLOCKING - MediaLive attempts to synchronize the output of each pipeline to the Unix epoch.
@Stability(value=Stable) @Nullable default String getOutputTimingSource()
@Stability(value=Stable) @Nullable default String getSupportLowFramerateInputs()
This is commonly set to enabled for music channels with less than one video frame per second.
@Stability(value=Stable) static CfnChannel.GlobalConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.