[][src]Struct rusoto_mediaconvert::HlsGroupSettings

pub struct HlsGroupSettings {
    pub ad_markers: Option<Vec<String>>,
    pub base_url: Option<String>,
    pub caption_language_mappings: Option<Vec<HlsCaptionLanguageMapping>>,
    pub caption_language_setting: Option<String>,
    pub client_cache: Option<String>,
    pub codec_specification: Option<String>,
    pub destination: Option<String>,
    pub directory_structure: Option<String>,
    pub encryption: Option<HlsEncryptionSettings>,
    pub manifest_compression: Option<String>,
    pub manifest_duration_format: Option<String>,
    pub min_segment_length: i64,
    pub output_selection: Option<String>,
    pub program_date_time: Option<String>,
    pub program_date_time_period: Option<i64>,
    pub segment_control: Option<String>,
    pub segment_length: i64,
    pub segments_per_subdirectory: Option<i64>,
    pub stream_inf_resolution: Option<String>,
    pub timed_metadata_id_3_frame: Option<String>,
    pub timed_metadata_id_3_period: Option<i64>,
    pub timestamp_delta_milliseconds: Option<i64>,
}

Required when you set (Type) under (OutputGroups)>(OutputGroupSettings) to HLSGROUPSETTINGS.

Fields

Choose one or more ad marker types to pass SCTE35 signals through to this group of Apple HLS outputs.

A partial URI prefix that will be prepended to each output in the media .m3u8 file. Can be used if base manifest is delivered from a different URL than the main .m3u8 file.

Language to be used on Caption outputs

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.

DRM settings.

When set, Minimum Segment Size is enforced by looking ahead and back within the specified range for a nearby avail and extending the segment size if needed.

Period of insertion of EXT-X-PROGRAM-DATE-TIME entry, in seconds.

Length of MPEG-2 Transport Stream segments to create (in seconds). Note that segments will end on the next keyframe after this number of seconds, so actual segment length may be longer.

Number of segments to write to a subdirectory before starting a new one. directoryStructure must be SINGLE_DIRECTORY for this setting to have an effect.

Timed Metadata interval in seconds.

Provides an extra millisecond delta offset to fine tune the timestamps.

Trait Implementations

impl Clone for HlsGroupSettings
[src]

Performs copy-assignment from source. Read more

impl Default for HlsGroupSettings
[src]

impl PartialEq<HlsGroupSettings> for HlsGroupSettings
[src]

impl Debug for HlsGroupSettings
[src]

impl Serialize for HlsGroupSettings
[src]

impl<'de> Deserialize<'de> for HlsGroupSettings
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

Should always be Self