You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
obws/src/client/streaming.rs

45 lines
1.4 KiB
Rust

use super::Client;
use crate::{requests::streaming::Request, responses::streaming as responses, Result};
/// API functions related to streaming.
pub struct Streaming<'a> {
pub(super) client: &'a Client,
}
impl<'a> Streaming<'a> {
/// Gets the status of the stream output.
#[doc(alias = "GetStreamStatus")]
pub async fn status(&self) -> Result<responses::StreamStatus> {
self.client.send_message(Request::GetStreamStatus).await
}
/// Toggles the status of the stream output.
#[doc(alias = "ToggleStream")]
pub async fn toggle(&self) -> Result<bool> {
self.client
.send_message::<_, responses::OutputActive>(Request::ToggleStream)
.await
.map(|ts| ts.active)
}
/// Starts the stream output.
#[doc(alias = "StartStream")]
pub async fn start(&self) -> Result<()> {
self.client.send_message(Request::StartStream).await
}
/// Stops the stream output.
#[doc(alias = "StopStream")]
pub async fn stop(&self) -> Result<()> {
self.client.send_message(Request::StopStream).await
}
/// Sends CEA-608 caption text over the stream output.
#[doc(alias = "SendStreamCaption")]
pub async fn send_caption(&self, caption_text: &str) -> Result<()> {
self.client
.send_message(Request::SendStreamCaption { caption_text })
.await
}
}