Fork of obws that supports a slightly older obs-websocket
Go to file
2021-05-10 16:36:06 -05:00
.github Rename to the "Check" job to "Feature check" 2021-01-10 02:11:17 +09:00
examples Close all event streams on disconnect 2021-03-11 20:42:45 +09:00
src Downgrade obs-websocket requirement 2021-05-10 16:36:06 -05:00
tests Use grcov for better code coverage testing 2021-03-21 14:32:19 +09:00
.editorconfig Check all feature combinations in the CI 2021-01-10 02:04:25 +09:00
.gitignore Use grcov for better code coverage testing 2021-03-21 14:32:19 +09:00
Cargo.toml Bump up version number to 0.7.0 2021-03-27 10:36:41 +09:00
CHANGELOG.md Bump up version number to 0.7.0 2021-03-27 10:36:41 +09:00
Justfile Fix error when trying to delete coverage files 2021-04-25 19:29:25 +09:00
LICENSE Initial commit 2020-12-27 22:52:56 +09:00
README.md Update tokio version mention in the readme 2021-03-27 10:40:10 +09:00
release.toml Add a changelog 2021-01-11 17:42:17 +09:00

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 (needs cargo-edit) or add it manually to your Cargo.toml:

[dependencies]
obws = "0.7.0"

In addition, you will need to use the lastest 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", 4444).await?;

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

    /// Optionally log-in (if enabled in obs-websocket) to allow other APIs and receive events.
    client.login(Some("password")).await?;

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

    Ok(())
}

License

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