/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the mediaconvert-2017-08-29.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.MediaConvert.Model { /// /// Settings for HLS output groups /// public partial class HlsSettings { private string _audioGroupId; private HlsAudioOnlyContainer _audioOnlyContainer; private string _audioRenditionSets; private HlsAudioTrackType _audioTrackType; private HlsDescriptiveVideoServiceFlag _descriptiveVideoServiceFlag; private HlsIFrameOnlyManifest _iFrameOnlyManifest; private string _segmentModifier; /// /// Gets and sets the property AudioGroupId. Specifies the group to which the audio rendition /// belongs. /// public string AudioGroupId { get { return this._audioGroupId; } set { this._audioGroupId = value; } } // Check to see if AudioGroupId property is set internal bool IsSetAudioGroupId() { return this._audioGroupId != null; } /// /// Gets and sets the property AudioOnlyContainer. Use this setting only in audio-only /// outputs. Choose MPEG-2 Transport Stream (M2TS) to create a file in an MPEG2-TS container. /// Keep the default value Automatic to create an audio-only file in a raw container. /// Regardless of the value that you specify here, if this output has video, the service /// will place the output into an MPEG2-TS container. /// public HlsAudioOnlyContainer AudioOnlyContainer { get { return this._audioOnlyContainer; } set { this._audioOnlyContainer = value; } } // Check to see if AudioOnlyContainer property is set internal bool IsSetAudioOnlyContainer() { return this._audioOnlyContainer != null; } /// /// Gets and sets the property AudioRenditionSets. 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 ','. /// public string AudioRenditionSets { get { return this._audioRenditionSets; } set { this._audioRenditionSets = value; } } // Check to see if AudioRenditionSets property is set internal bool IsSetAudioRenditionSets() { return this._audioRenditionSets != null; } /// /// Gets and sets the property AudioTrackType. Four types of audio-only tracks are supported: /// Audio-Only Variant Stream The client can play back this audio-only stream instead /// of video in low-bandwidth scenarios. Represented as an EXT-X-STREAM-INF in the HLS /// manifest. Alternate Audio, Auto Select, Default Alternate rendition that the client /// should try to play back by default. Represented as an EXT-X-MEDIA in the HLS manifest /// with DEFAULT=YES, AUTOSELECT=YES Alternate Audio, Auto Select, Not Default Alternate /// rendition that the client may try to play back by default. Represented as an EXT-X-MEDIA /// in the HLS manifest with DEFAULT=NO, AUTOSELECT=YES Alternate Audio, not Auto Select /// Alternate rendition that the client will not try to play back by default. Represented /// as an EXT-X-MEDIA in the HLS manifest with DEFAULT=NO, AUTOSELECT=NO /// public HlsAudioTrackType AudioTrackType { get { return this._audioTrackType; } set { this._audioTrackType = value; } } // Check to see if AudioTrackType property is set internal bool IsSetAudioTrackType() { return this._audioTrackType != null; } /// /// Gets and sets the property DescriptiveVideoServiceFlag. Specify whether to flag this /// audio track as descriptive video service (DVS) in your HLS parent manifest. When you /// choose Flag, MediaConvert includes the parameter CHARACTERISTICS="public.accessibility.describes-video" /// in the EXT-X-MEDIA entry for this track. When you keep the default choice, Don't flag, /// MediaConvert leaves this parameter out. The DVS flag can help with accessibility on /// Apple devices. For more information, see the Apple documentation. /// public HlsDescriptiveVideoServiceFlag DescriptiveVideoServiceFlag { get { return this._descriptiveVideoServiceFlag; } set { this._descriptiveVideoServiceFlag = value; } } // Check to see if DescriptiveVideoServiceFlag property is set internal bool IsSetDescriptiveVideoServiceFlag() { return this._descriptiveVideoServiceFlag != null; } /// /// Gets and sets the property IFrameOnlyManifest. Choose Include to have MediaConvert /// generate a child manifest that lists only the I-frames for this rendition, in addition /// to your regular manifest for this rendition. You might use this manifest as part of /// a workflow that creates preview functions for your video. MediaConvert adds both the /// I-frame only child manifest and the regular child manifest to the parent manifest. /// When you don't need the I-frame only child manifest, keep the default value Exclude. /// public HlsIFrameOnlyManifest IFrameOnlyManifest { get { return this._iFrameOnlyManifest; } set { this._iFrameOnlyManifest = value; } } // Check to see if IFrameOnlyManifest property is set internal bool IsSetIFrameOnlyManifest() { return this._iFrameOnlyManifest != null; } /// /// Gets and sets the property SegmentModifier. Use this setting to add an identifying /// string to the filename of each segment. The service adds this string between the name /// modifier and segment index number. You can use format identifiers in the string. For /// more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/using-variables-in-your-job-settings.html /// public string SegmentModifier { get { return this._segmentModifier; } set { this._segmentModifier = value; } } // Check to see if SegmentModifier property is set internal bool IsSetSegmentModifier() { return this._segmentModifier != null; } } }