Struct google_youtube3::api::IngestionInfo
source · pub struct IngestionInfo {
pub backup_ingestion_address: Option<String>,
pub ingestion_address: Option<String>,
pub rtmps_backup_ingestion_address: Option<String>,
pub rtmps_ingestion_address: Option<String>,
pub stream_name: Option<String>,
}
Expand description
Describes information necessary for ingesting an RTMP, HTTP, or SRT stream.
This type is not used in any activity, and only used as part of another schema.
Fields§
§backup_ingestion_address: Option<String>
The backup ingestion URL that you should use to stream video to YouTube. You have the option of simultaneously streaming the content that you are sending to the ingestionAddress to this URL.
ingestion_address: Option<String>
The primary ingestion URL that you should use to stream video to YouTube. You must stream video to this URL. Depending on which application or tool you use to encode your video stream, you may need to enter the stream URL and stream name separately or you may need to concatenate them in the following format: STREAM_URL/STREAM_NAME
rtmps_backup_ingestion_address: Option<String>
This ingestion url may be used instead of backupIngestionAddress in order to stream via RTMPS. Not applicable to non-RTMP streams.
rtmps_ingestion_address: Option<String>
This ingestion url may be used instead of ingestionAddress in order to stream via RTMPS. Not applicable to non-RTMP streams.
stream_name: Option<String>
The stream name that YouTube assigns to the video stream.
Trait Implementations§
source§impl Clone for IngestionInfo
impl Clone for IngestionInfo
source§fn clone(&self) -> IngestionInfo
fn clone(&self) -> IngestionInfo
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more