MsSmoothGroupSettings
public struct MsSmoothGroupSettings : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
By default, the service creates one .ism Microsoft Smooth Streaming manifest for each Microsoft Smooth Streaming output group in your job. This default manifest references every output in the output group. To create additional manifests that reference a subset of the outputs in the output group, specify a list of them here.
Declaration
Swift
public let additionalManifests: [MsSmoothAdditionalManifest]?
-
COMBINE_DUPLICATE_STREAMS combines identical audio encoding settings across a Microsoft Smooth output group into a single audio stream.
Declaration
Swift
public let audioDeduplication: MsSmoothAudioDeduplication?
-
Use Destination (Destination) to specify the S3 output location and the output filename base. Destination accepts format identifiers. If you do not specify the base filename in the URI, the service will use the filename of the input file. If your job has multiple inputs, the service uses the filename of the first input file.
Declaration
Swift
public let destination: String?
-
Settings associated with the destination. Will vary based on the type of destination
Declaration
Swift
public let destinationSettings: DestinationSettings?
-
If you are using DRM, set DRM System (MsSmoothEncryptionSettings) to specify the value SpekeKeyProvider.
Declaration
Swift
public let encryption: MsSmoothEncryptionSettings?
-
Use Fragment length (FragmentLength) to specify the mp4 fragment sizes in seconds. Fragment length must be compatible with GOP size and frame rate.
Declaration
Swift
public let fragmentLength: Int?
-
Use Manifest encoding (MsSmoothManifestEncoding) to specify the encoding format for the server and client manifest. Valid options are utf8 and utf16.
Declaration
Swift
public let manifestEncoding: MsSmoothManifestEncoding?
-
init(additionalManifests:audioDeduplication:destination:destinationSettings:encryption:fragmentLength:manifestEncoding:)
Undocumented
Declaration
Swift
public init(additionalManifests: [MsSmoothAdditionalManifest]? = nil, audioDeduplication: MsSmoothAudioDeduplication? = nil, destination: String? = nil, destinationSettings: DestinationSettings? = nil, encryption: MsSmoothEncryptionSettings? = nil, fragmentLength: Int? = nil, manifestEncoding: MsSmoothManifestEncoding? = nil)
-
Declaration
Swift
public func validate(name: String) throws