[][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_final_segment_length: Option<f64>,
    pub min_segment_length: Option<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: Option<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

ad_markers: Option<Vec<String>>

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

base_url: Option<String>

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.

caption_language_mappings: Option<Vec<HlsCaptionLanguageMapping>>

Language to be used on Caption outputs

caption_language_setting: Option<String>client_cache: Option<String>codec_specification: Option<String>destination: Option<String>

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.

directory_structure: Option<String>encryption: Option<HlsEncryptionSettings>

DRM settings.

manifest_compression: Option<String>manifest_duration_format: Option<String>min_final_segment_length: Option<f64>

Keep this setting at the default value of 0, unless you are troubleshooting a problem with how devices play back the end of your video asset. If you know that player devices are hanging on the final segment of your video because the length of your final segment is too short, use this setting to specify a minimum final segment length, in seconds. Choose a value that is greater than or equal to 1 and less than your segment length. When you specify a value for this setting, the encoder will combine any final segment that is shorter than the length that you specify with the previous segment. For example, your segment length is 3 seconds and your final segment is .5 seconds without a minimum final segment length; when you set the minimum final segment length to 1, your final segment is 3.5 seconds.

min_segment_length: Option<i64>

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.

output_selection: Option<String>program_date_time: Option<String>program_date_time_period: Option<i64>

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

segment_control: Option<String>segment_length: Option<i64>

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.

segments_per_subdirectory: Option<i64>

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.

stream_inf_resolution: Option<String>timed_metadata_id_3_frame: Option<String>timed_metadata_id_3_period: Option<i64>

Timed Metadata interval in seconds.

timestamp_delta_milliseconds: Option<i64>

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

Trait Implementations

impl PartialEq<HlsGroupSettings> for HlsGroupSettings[src]

impl Default for HlsGroupSettings[src]

impl Clone for HlsGroupSettings[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for HlsGroupSettings[src]

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

impl Serialize for HlsGroupSettings[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self