AudioDescription
public struct AudioDescription : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Advanced audio normalization settings.
Declaration
Swift
public let audioNormalizationSettings: AudioNormalizationSettings?
-
The name of the AudioSelector used as the source for this AudioDescription.
Declaration
Swift
public let audioSelectorName: String
-
Applies only if audioTypeControl is useConfigured. The values for audioType are defined in ISO-IEC 13818-1.
Declaration
Swift
public let audioType: AudioType?
-
Determines how audio type is determined. followInput: If the input contains an ISO 639 audioType, then that value is passed through to the output. If the input contains no ISO 639 audioType, the value in Audio Type is included in the output. useConfigured: The value in Audio Type is included in the output. Note that this field and audioType are both ignored if inputType is broadcasterMixedAd.
Declaration
Swift
public let audioTypeControl: AudioDescriptionAudioTypeControl?
-
Audio codec settings.
Declaration
Swift
public let codecSettings: AudioCodecSettings?
-
RFC 5646 language code representing the language of the audio output track. Only used if languageControlMode is useConfigured, or there is no ISO 639 language code specified in the input.
Declaration
Swift
public let languageCode: String?
-
Choosing followInput will cause the ISO 639 language code of the output to follow the ISO 639 language code of the input. The languageCode will be used when useConfigured is set, or when followInput is selected but there is no ISO 639 language code specified by the input.
Declaration
Swift
public let languageCodeControl: AudioDescriptionLanguageCodeControl?
-
The name of this AudioDescription. Outputs will use this name to uniquely identify this AudioDescription. Description names should be unique within this Live Event.
Declaration
Swift
public let name: String
-
Settings that control how input audio channels are remixed into the output audio channels.
Declaration
Swift
public let remixSettings: RemixSettings?
-
Used for MS Smooth and Apple HLS outputs. Indicates the name displayed by the player (eg. English, or Director Commentary).
Declaration
Swift
public let streamName: String?
-
init(audioNormalizationSettings:audioSelectorName:audioType:audioTypeControl:codecSettings:languageCode:languageCodeControl:name:remixSettings:streamName:)
Undocumented
Declaration
Swift
public init(audioNormalizationSettings: AudioNormalizationSettings? = nil, audioSelectorName: String, audioType: AudioType? = nil, audioTypeControl: AudioDescriptionAudioTypeControl? = nil, codecSettings: AudioCodecSettings? = nil, languageCode: String? = nil, languageCodeControl: AudioDescriptionLanguageCodeControl? = nil, name: String, remixSettings: RemixSettings? = nil, streamName: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws