libobs-simple 8.0.1+32.0.2

A simple and easy-to-use Rust wrapper around libobs-wrapper for recording and streaming.
1
2
3
4
5
6
7
8
9
#![cfg_attr(doc, feature(doc_cfg))]
//! A simplified interface for recording and streaming with libobs

pub mod error;
pub mod output;
pub mod sources;

pub use error::ObsSimpleError;
pub use libobs_wrapper as wrapper;