[][src]Struct rusoto_medialive::AudioOnlyHlsSettings

pub struct AudioOnlyHlsSettings {
    pub audio_group_id: Option<String>,
    pub audio_only_image: Option<InputLocation>,
    pub audio_track_type: Option<String>,
    pub segment_type: Option<String>,
}

Audio Only Hls Settings

Fields

audio_group_id: Option<String>

Specifies the group to which the audio Rendition belongs.

audio_only_image: Option<InputLocation>

Optional. Specifies the .jpg or .png image to use as the cover art for an audio-only output. We recommend a low bit-size file because the image increases the output audio bandwidth.

The image is attached to the audio as an ID3 tag, frame type APIC, picture type 0x10, as per the "ID3 tag version 2.4.0 - Native Frames" standard.

audio_track_type: Option<String>

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

segment_type: Option<String>

Specifies the segment type.

Trait Implementations

impl Clone for AudioOnlyHlsSettings[src]

impl Debug for AudioOnlyHlsSettings[src]

impl Default for AudioOnlyHlsSettings[src]

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

impl PartialEq<AudioOnlyHlsSettings> for AudioOnlyHlsSettings[src]

impl Serialize for AudioOnlyHlsSettings[src]

impl StructuralPartialEq for AudioOnlyHlsSettings[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.