17 releases
0.4.1 | Sep 27, 2022 |
---|---|
0.4.0 | Sep 22, 2022 |
0.3.4 | Sep 13, 2022 |
0.3.0 | Dec 6, 2021 |
0.1.5 | Mar 13, 2020 |
#119 in Video
138 downloads per month
1MB
29K
SLoC
Rust OBS Wrapper
A safe wrapper around the OBS API, useful for creating OBS sources, filters and effects. The wrapper is quite incomplete and will most likely see dramatic API changes in the future.
This repo also includes plugins creating using the wrapper in the /plugins
folder.
Plugins
Folder | Description |
---|---|
/scroll-focus-filter | an OBS filter that will zoom into the currently focused X window |
/rnnoise-denoiser-filter | an OBS filter for removing background noise from your Mic |
Usage
In your Cargo.toml
file add the following section, substituting <module-name>
for the name of
the module:
[dependencies]
obs-wrapper = "0.4"
[lib]
name = "<module-name>"
crate-type = ["cdylib"]
The process for creating a plugin is:
- Create a struct that implements Module
- Create a struct that will store the plugin state
- Implement the required traits for the module
- Enable the traits which have been enabled in the module
load
method
use obs_wrapper::{
// Everything required for modules
prelude::*,
// Everything required for creating a source
source::*,
// Macro for registering modules
obs_register_module,
// Macro for creating strings
obs_string,
};
// The module that will handle creating the source.
struct TestModule {
context: ModuleContext
};
// The source that will be shown inside OBS.
struct TestSource;
// The state of the source that is managed by OBS and used in each trait method.
struct SourceData;
// Implement the Sourceable trait for TestSource, this is required for each source.
// It allows you to specify the source ID and type.
impl Sourceable for TestSource {
fn get_id() -> ObsString {
obs_string!("test_source")
}
fn get_type() -> SourceType {
SourceType::FILTER
}
}
// Allow OBS to show a name for the source
impl GetNameSource<SourceData> for TestSource {
fn get_name() -> ObsString {
obs_string!("Test Source")
}
}
// Implement the Module trait for TestModule. This will handle the creation of the source and
// has some methods for telling OBS a bit about itself.
impl Module for TestModule {
fn new(context: ModuleContext) -> Self {
Self { context }
}
fn get_ctx(&self) -> &ModuleContext {
&self.context
}
// Load the module - create all sources, returning true if all went well.
fn load(&mut self, load_context: &mut LoadContext) -> bool {
// Create the source
let source = load_context
.create_source_builder::<TestSource, SourceData>()
// Since GetNameSource is implemented, this method needs to be called to
// enable it.
.enable_get_name()
.build();
// Tell OBS about the source so that it will show it.
load_context.register_source(source);
// Nothing could have gone wrong, so return true.
true
}
fn description() -> ObsString {
obs_string!("A great test module.")
}
fn name() -> ObsString {
obs_string!("Test Module")
}
fn author() -> ObsString {
obs_string!("Bennett")
}
}
Installation
- Run
cargo build --release
- Copy
/target/release/<module-name>.so
to your OBS plugins folder (/usr/lib/obs-plugins/
) - The plugin should be available for use from inside OBS
License
Like obs-studio, obs-wrapper
is licensed under GNU General Public License v2.0.
See LICENSE for details.
Dependencies
~0.6–3MB
~62K SLoC