Struct google_youtube3::LiveBroadcastContentDetails[][src]

pub struct LiveBroadcastContentDetails {
    pub closed_captions_type: Option<String>,
    pub projection: Option<String>,
    pub enable_embed: Option<bool>,
    pub bound_stream_id: Option<String>,
    pub enable_auto_start: Option<bool>,
    pub latency_preference: Option<String>,
    pub mesh: Option<String>,
    pub enable_closed_captions: Option<bool>,
    pub enable_low_latency: Option<bool>,
    pub start_with_slate: Option<bool>,
    pub monitor_stream: Option<MonitorStreamInfo>,
    pub enable_content_encryption: Option<bool>,
    pub record_from_start: Option<bool>,
    pub enable_dvr: Option<bool>,
    pub bound_stream_last_update_time_ms: Option<String>,
}

Detailed settings of a broadcast.

This type is not used in any activity, and only used as part of another schema.

Fields

no description provided

The projection format of this broadcast. This defaults to rectangular.

This setting indicates whether the broadcast video can be played in an embedded player. If you choose to archive the video (using the enableArchive property), this setting will also apply to the archived video.

This value uniquely identifies the live stream bound to the broadcast.

This setting indicates whether auto start is enabled for this broadcast.

If both this and enable_low_latency are set, they must match. LATENCY_NORMAL should match enable_low_latency=false LATENCY_LOW should match enable_low_latency=true LATENCY_ULTRA_LOW should have enable_low_latency omitted.

no description provided

This setting indicates whether HTTP POST closed captioning is enabled for this broadcast. The ingestion URL of the closed captions is returned through the liveStreams API. This is mutually exclusive with using the closed_captions_type property, and is equivalent to setting closed_captions_type to CLOSED_CAPTIONS_HTTP_POST.

Indicates whether this broadcast has low latency enabled.

This setting indicates whether the broadcast should automatically begin with an in-stream slate when you update the broadcast's status to live. After updating the status, you then need to send a liveCuepoints.insert request that sets the cuepoint's eventState to end to remove the in-stream slate and make your broadcast stream visible to viewers.

The monitorStream object contains information about the monitor stream, which the broadcaster can use to review the event content before the broadcast stream is shown publicly.

This setting indicates whether YouTube should enable content encryption for the broadcast.

Automatically start recording after the event goes live. The default value for this property is true.

Important: You must also set the enableDvr property's value to true if you want the playback to be available immediately after the broadcast ends. If you set this property's value to true but do not also set the enableDvr property to true, there may be a delay of around one day before the archived video will be available for playback.

This setting determines whether viewers can access DVR controls while watching the video. DVR controls enable the viewer to control the video playback experience by pausing, rewinding, or fast forwarding content. The default value for this property is true.

Important: You must set the value to true and also set the enableArchive property's value to true if you want to make playback available immediately after the broadcast ends.

The date and time that the live stream referenced by boundStreamId was last updated.

Trait Implementations

impl Default for LiveBroadcastContentDetails
[src]

Returns the "default value" for a type. Read more

impl Clone for LiveBroadcastContentDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LiveBroadcastContentDetails
[src]

Formats the value using the given formatter. Read more

impl Part for LiveBroadcastContentDetails
[src]

Auto Trait Implementations