You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-medialive): AWS Elemental MediaLive adds three new features: MediaPackage v2 endpoint support for live stream delivery, KLV metadata passthrough in CMAF Ingest output groups, and Metadata Name Modifier in CMAF Ingest output groups for customizing metadata track names in output streams.
* Name of the channel group in MediaPackageV2. Only use if you are sending CMAF Ingest output to a CMAF ingest endpoint on a MediaPackage channel that uses MediaPackage v2.
2758
+
* @public
2759
+
*/
2760
+
ChannelGroup?: string|undefined;
2761
+
2762
+
/**
2763
+
* Name of the channel in MediaPackageV2. Only use if you are sending CMAF Ingest output to a CMAF ingest endpoint on a MediaPackage channel that uses MediaPackage v2.
* When set to passthrough, timed metadata is passed through from input to output.
180
+
* Set to PASSTHROUGH to enable ID3 metadata insertion. To include metadata, you configure other parameters in the output group or individual outputs, or you add an ID3 action to the channel schedule.
* When set to passthrough, timed metadata is passed through from input to output.
346
+
* Set to PASSTHROUGH to enable ID3 metadata insertion. To include metadata, you configure other parameters in the output group or individual outputs, or you add an ID3 action to the channel schedule.
* If set to passthrough, passes any KLV data from the input source to this output.
1073
+
* @public
1074
+
*/
1075
+
KlvBehavior?: CmafKLVBehavior|undefined;
1076
+
1077
+
/**
1078
+
* Change the modifier that MediaLive automatically adds to the Streams() name that identifies a KLV track. The default is "klv", which means the default name will be Streams(klv.cmfm). Any string you enter here will replace the "klv" string.\nThe modifier can only contain: numbers, letters, plus (+), minus (-), underscore (_) and period (.) and has a maximum length of 100 characters.
1079
+
* @public
1080
+
*/
1081
+
KlvNameModifier?: string|undefined;
1082
+
1083
+
/**
1084
+
* Change the modifier that MediaLive automatically adds to the Streams() name that identifies a Nielsen ID3 track. The default is "nid3", which means the default name will be Streams(nid3.cmfm). Any string you enter here will replace the "nid3" string.\nThe modifier can only contain: numbers, letters, plus (+), minus (-), underscore (_) and period (.) and has a maximum length of 100 characters.
1085
+
* @public
1086
+
*/
1087
+
NielsenId3NameModifier?: string|undefined;
1088
+
1089
+
/**
1090
+
* Change the modifier that MediaLive automatically adds to the Streams() name for a SCTE 35 track. The default is "scte", which means the default name will be Streams(scte.cmfm). Any string you enter here will replace the "scte" string.\nThe modifier can only contain: numbers, letters, plus (+), minus (-), underscore (_) and period (.) and has a maximum length of 100 characters.
* ID3 tag to insert into each segment. Supports special keyword identifiers to substitute in segment-related values.\nSupported keyword identifiers: https://docs.aws.amazon.com/medialive/latest/ug/variable-data-identifiers.html
2888
+
* Complete this parameter if you want to specify only the metadata, not the entire frame. MediaLive will insert the metadata in a TXXX frame. Enter the value as plain text. You can include standard MediaLive variabledata such as the current segment number.
2851
2889
* @public
2852
2890
*/
2853
2891
Tag?: string|undefined;
2854
2892
2855
2893
/**
2856
-
* Base64 string formatted according to the ID3 specification: http://id3.org/id3v2.4.0-structure
2894
+
* Complete this parameter if you want to specify the entire ID3 metadata. Enter a base64 string that contains one or more fully formed ID3 tags, according to the ID3 specification: http://id3.org/id3v2.4.0-structure
2857
2895
* @public
2858
2896
*/
2859
2897
Id3?: string|undefined;
2860
2898
}
2861
2899
2862
2900
/**
2863
-
* Settings for the action to emit HLS metadata
2901
+
* Settings for the action to insert ID3 metadata (as a one-time action) in HLS output groups.
0 commit comments