interface RemixSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.RemixSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#RemixSettings |
Java | software.amazon.awscdk.services.medialive.alpha.RemixSettings |
Python | aws_cdk.aws_medialive_alpha.RemixSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป RemixSettings |
Audio remix settings for channel remapping.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
const remixSettings: medialive_alpha.RemixSettings = {
channelMappings: [{
inputChannelLevels: [{
inputChannel: 123,
// the properties below are optional
gain: 123,
}],
outputChannel: 123,
}],
// the properties below are optional
channelsIn: 123,
channelsOut: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | Audio[] | The channel mappings from input to output. |
| channels | number | The number of input channels. |
| channels | number | The number of output channels. |
channelMappings
Type:
Audio[]
The channel mappings from input to output.
channelsIn?
Type:
number
(optional, default: auto-detected)
The number of input channels.
channelsOut?
Type:
number
(optional, default: auto-detected)
The number of output channels.
Valid values: 1, 2, 4, 6, 8.

.NET
Go
Java
Python
TypeScript (