class Encoding
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.Encoding |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#Encoding |
Java | software.amazon.awscdk.services.mediaconnect.alpha.Encoding |
Python | aws_cdk.aws_mediaconnect_alpha.Encoding |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป Encoding |
Encoding options.
Example
declare const stack: Stack;
declare const role: iam.IRole;
declare const securityGroup: ec2.ISecurityGroup;
declare const subnet: ec2.ISubnet;
const efaInterface = VpcInterface.define({
vpcInterfaceName: 'efa-interface',
role: role,
securityGroups: [securityGroup],
subnet: subnet,
networkInterfaceType: NetworkInterface.EFA, // Required for CDI
});
const videoStream = MediaStream.video({
mediaStreamId: 1,
mediaStreamName: 'video',
videoFormat: MediaVideoFormat.HD_1080P,
fmtp: {
exactFramerate: Framerate.FPS_29_97,
par: PixelAspectRatio.SQUARE,
},
});
const flow = new Flow(stack, 'MyCdiFlow', {
flowSize: FlowSize.LARGE_4X, // Required for CDI and JPEG XS
vpcInterfaces: [efaInterface],
mediaStreams: [videoStream],
source: SourceConfiguration.cdi({
flowSourceName: 'cdi-source',
vpcInterface: efaInterface,
port: 5000,
maxSyncBuffer: 100,
mediaStreamSourceConfigurations: [{
encoding: Encoding.RAW,
mediaStream: videoStream,
}],
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The encoding string value. |
| static JXSV | Encoding | Option for JXSV. |
| static PCM | Encoding | Option for PCM. |
| static RAW | Encoding | Option for raw. |
| static SMPTE291 | Encoding | Option for SMPTE-291. |
value
Type:
string
The encoding string value.
static JXSV
Type:
Encoding
Option for JXSV.
static PCM
Type:
Encoding
Option for PCM.
static RAW
Type:
Encoding
Option for raw.
static SMPTE291
Type:
Encoding
Option for SMPTE-291.
Methods
| Name | Description |
|---|---|
| to | Returns the string value. |
| static of(value) | Use a custom encoding value. |
toString()
public toString(): string
Returns
string
Returns the string value.
static of(value)
public static of(value: string): Encoding
Parameters
- value
stringโ The encoding string value.
Returns
Use a custom encoding value.

.NET
Go
Java
Python
TypeScript (