interface RemixSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.RemixSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_RemixSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.RemixSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.RemixSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » RemixSettingsProperty |
The settings for remixing audio in the output.
The parent of this entity is AudioDescription.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const remixSettingsProperty: medialive_mixins.CfnChannelPropsMixin.RemixSettingsProperty = {
channelMappings: [{
inputChannelLevels: [{
gain: 123,
inputChannel: 123,
}],
outputChannel: 123,
}],
channelsIn: 123,
channelsOut: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | IResolvable | (IResolvable | Audio)[] | A mapping of input channels to output channels, with appropriate gain adjustments. |
| channels | number | The number of input channels to be used. |
| channels | number | The number of output channels to be produced. |
channelMappings?
Type:
IResolvable | (IResolvable | Audio)[]
(optional)
A mapping of input channels to output channels, with appropriate gain adjustments.
channelsIn?
Type:
number
(optional)
The number of input channels to be used.
channelsOut?
Type:
number
(optional)
The number of output channels to be produced.
Valid values: 1, 2, 4, 6, 8.

.NET
Go
Java
Python
TypeScript