21 unstable releases

0.11.5 Sep 4, 2023
0.11.2 Jun 22, 2023
0.10.0 Nov 14, 2022
0.9.1 Feb 25, 2022
0.2.0 Dec 29, 2020

#39 in Video

Download history 92/week @ 2024-01-01 334/week @ 2024-01-08 261/week @ 2024-01-15 91/week @ 2024-01-22 140/week @ 2024-01-29 216/week @ 2024-02-05 142/week @ 2024-02-12 517/week @ 2024-02-19 257/week @ 2024-02-26 521/week @ 2024-03-04 446/week @ 2024-03-11 242/week @ 2024-03-18 194/week @ 2024-03-25 332/week @ 2024-04-01 179/week @ 2024-04-08 171/week @ 2024-04-15

898 downloads per month
Used in 3 crates

MIT license

285KB
6K SLoC

OBWS - The obws (obvious) remote control library for OBS

Build Status Repository Documentation Code Coverage

Remote control OBS with the obs-websocket plugin from Rust 🦀.

Usage

Add obws to your project with cargo add obws@0.11.5 or add it manually to your Cargo.toml:

[dependencies]
obws = "0.11.5"

In addition, you will need to use the latest tokio runtime to use this library as it makes heavy use of async/await and is bound to this runtime.

Example

Here we connect to a OBS instance, get some version information and log in to access the whole API and lastly print out a list of available scenes.

For more usage instructions see the docs or check out the examples.

use anyhow::Result;
use obws::Client;

#[tokio::main]
async fn main() -> Result<()> {
    // Connect to the OBS instance through obs-websocket.
    let client = Client::connect("localhost", 4455, Some("password")).await?;

    // Get and print out version information of OBS and obs-websocket.
    let version = client.general().version().await?;
    println!("{version:#?}");

    // Get a list of available scenes and print them out.
    let scene_list = client.scenes().list().await?;
    println!("{scene_list:#?}");

    Ok(())
}

License

This project is licensed under MIT License (or http://opensource.org/licenses/MIT).

Dependencies

~7–19MB
~220K SLoC