interface Fmp4HlsSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.Fmp4HlsSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_Fmp4HlsSettingsProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.Fmp4HlsSettingsProperty |
Python | aws_cdk.aws_medialive.CfnChannel.Fmp4HlsSettingsProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnChannel » Fmp4HlsSettingsProperty |
Settings for the fMP4 containers.
The parent of this entity is HlsSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const fmp4HlsSettingsProperty: medialive.CfnChannel.Fmp4HlsSettingsProperty = {
audioRenditionSets: 'audioRenditionSets',
nielsenId3Behavior: 'nielsenId3Behavior',
timedMetadataBehavior: 'timedMetadataBehavior',
};
Properties
| Name | Type | Description |
|---|---|---|
| audio | string | List all the audio groups that are used with the video output stream. |
| nielsen | string | If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output. |
| timed | string | When set to passthrough, timed metadata is passed through from input to output. |
audioRenditionSets?
Type:
string
(optional)
List all the audio groups that are used with the video output stream.
Input all the audio GROUP-IDs that are associated to the video, separate by ','.
nielsenId3Behavior?
Type:
string
(optional)
If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
timedMetadataBehavior?
Type:
string
(optional)
When set to passthrough, timed metadata is passed through from input to output.

.NET
Go
Java
Python
TypeScript