NetObsBindings 0.0.1.28-alpha
See the version list below for details.
dotnet add package NetObsBindings --version 0.0.1.28-alpha
NuGet\Install-Package NetObsBindings -Version 0.0.1.28-alpha
<PackageReference Include="NetObsBindings" Version="0.0.1.28-alpha" />
paket add NetObsBindings --version 0.0.1.28-alpha
#r "nuget: NetObsBindings, 0.0.1.28-alpha"
// Install NetObsBindings as a Cake Addin #addin nuget:?package=NetObsBindings&version=0.0.1.28-alpha&prerelease // Install NetObsBindings as a Cake Tool #tool nuget:?package=NetObsBindings&version=0.0.1.28-alpha&prerelease
NetObsBindings
NetObsBindings is a library that provides .NET bindings for Open Broadcaster Software (OBS).
These bindings are generated from the OBS repository, specifically libobs and obs-frontend projects.
The approach taken is to generate a static class per header file via ClangSharp generator. This means, that, for example, you could find functions exported from the obs-service.h file in the ObsService C# class.
How to use these bindings?
These bindings can be used to create your own plugin in C#.
Simple plugin example:
public static class ObsPlugin
{
public static nint ObsModulePointer { get; set; }
[UnmanagedCallersOnly(EntryPoint = "obs_module_set_pointer", CallConvs = new[] { typeof(System.Runtime.CompilerServices.CallConvCdecl) })]
public static void SetPointer(nint obsModulePointer)
{
Log("[blog] Pointer Saved!");
ObsModulePointer = obsModulePointer;
}
[UnmanagedCallersOnly(EntryPoint = "obs_module_ver", CallConvs = new[] { typeof(System.Runtime.CompilerServices.CallConvCdecl) })]
public static uint GetVersion()
{
Log("[blog] Returned version!");
var major = (uint) Obs.Version.Major;
var minor = (uint) Obs.Version.Minor;
var patch = (uint) Obs.Version.Build;
var version = (major << 24) | (minor << 16) | patch;
return version;
}
[UnmanagedCallersOnly(EntryPoint = "obs_module_load", CallConvs = new[] {typeof(System.Runtime.CompilerServices.CallConvCdecl)})]
public static bool ModuleLoad()
{
Log("[blog] Loaded!");
return true;
}
private static unsafe void Log(string text)
{
var asciiBytes = Encoding.UTF8.GetBytes(text);
fixed (byte* logMessagePtr = asciiBytes)
{
ObsBase.blogva(ObsBase.LOG_INFO, (sbyte*) logMessagePtr, null);
}
}
}
There is one caveat: make sure you are publishing the plugins as NativeAOT libraries, this is essential to make it work due to the plugin model of OBS.
How to generate bindings locally?
In order to generate bindings locally, please use the build.ps1 script. Make sure that you have ClangSharpPInvokeGenerator dotnet tool installed.
This script will:
- Clone the OBS repository
- Generate bindings for all required modules
- Insert the version of the OBS library to Obs.Version.cs file.
Originally, these bindings generated in the blog post https://sharovarskyi.com/blog/posts/clangsharp-dotnet-interop-bindings/
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
30.1.2 | 161 | 4/11/2024 |
30.0.2 | 501 | 12/11/2023 |
0.0.1.38-alpha | 205 | 10/8/2023 |
0.0.1.37-alpha | 137 | 10/4/2023 |
0.0.1.35-alpha | 174 | 5/7/2023 |
0.0.1.34-alpha | 153 | 4/17/2023 |
0.0.1.33-alpha | 232 | 4/8/2023 |
0.0.1.32-alpha | 138 | 3/23/2023 |
0.0.1.31-alpha | 146 | 3/12/2023 |
0.0.1.30-alpha | 126 | 3/12/2023 |
0.0.1.29-alpha | 152 | 2/11/2023 |
0.0.1.28-alpha | 139 | 2/11/2023 |
0.0.1.27-alpha | 136 | 2/10/2023 |
0.0.1.26-alpha | 155 | 2/5/2023 |
0.0.1.25-alpha | 149 | 1/31/2023 |
0.0.1.24-alpha | 152 | 1/31/2023 |
0.0.1.23-alpha | 141 | 1/28/2023 |
0.0.1.22-alpha | 176 | 1/22/2023 |
0.0.1.21-alpha | 147 | 1/22/2023 |
0.0.1.20-alpha | 149 | 1/22/2023 |
0.0.1.19-alpha | 148 | 1/22/2023 |
0.0.1.18-alpha | 142 | 1/22/2023 |
0.0.1.17-alpha | 142 | 1/16/2023 |
0.0.1.16-alpha | 157 | 1/14/2023 |
0.0.1.15-alpha | 151 | 1/14/2023 |
0.0.1.14-alpha | 210 | 9/18/2022 |
0.0.1-alpha9 | 157 | 7/30/2022 |
0.0.1-alpha8 | 167 | 7/30/2022 |
0.0.1-alpha7 | 186 | 2/20/2022 |
0.0.1-alpha6 | 183 | 2/20/2022 |
0.0.1-alpha5 | 193 | 2/20/2022 |
0.0.1-alpha4 | 196 | 2/20/2022 |
0.0.1-alpha3 | 184 | 2/20/2022 |
0.0.1-alpha2 | 191 | 2/20/2022 |
0.0.1-alpha13 | 156 | 7/30/2022 |
0.0.1-alpha12 | 162 | 7/30/2022 |
0.0.1-alpha11 | 164 | 7/30/2022 |
0.0.1-alpha10 | 176 | 7/30/2022 |
0.0.1-alpha1 | 189 | 2/20/2022 |
0.0.1-alpha | 198 | 2/20/2022 |