interface AudioChannelMappingProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.AudioChannelMappingProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.AudioChannelMappingProperty |
Python | aws_cdk.aws_medialive.CfnChannel.AudioChannelMappingProperty |
TypeScript | @aws-cdk/aws-medialive » CfnChannel » AudioChannelMappingProperty |
The settings for remixing audio.
The parent of this entity is RemixSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive from '@aws-cdk/aws-medialive';
const audioChannelMappingProperty: medialive.CfnChannel.AudioChannelMappingProperty = {
inputChannelLevels: [{
gain: 123,
inputChannel: 123,
}],
outputChannel: 123,
};
Properties
Name | Type | Description |
---|---|---|
input | IResolvable | IResolvable | Input [] | The indices and gain values for each input channel that should be remixed into this output channel. |
output | number | The index of the output channel that is being produced. |
inputChannelLevels?
Type:
IResolvable
|
IResolvable
|
Input
[]
(optional)
The indices and gain values for each input channel that should be remixed into this output channel.
outputChannel?
Type:
number
(optional)
The index of the output channel that is being produced.