Lucid.Rtc
0.1.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Lucid.Rtc --version 0.1.3
NuGet\Install-Package Lucid.Rtc -Version 0.1.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Lucid.Rtc" Version="0.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Lucid.Rtc" Version="0.1.3" />
<PackageReference Include="Lucid.Rtc" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Lucid.Rtc --version 0.1.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Lucid.Rtc, 0.1.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Lucid.Rtc@0.1.3
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Lucid.Rtc&version=0.1.3
#tool nuget:?package=Lucid.Rtc&version=0.1.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Lucid.Rtc
WebRTC bindings for .NET with native P2P communication support.
Installation
For most users (recommended)
<PackageReference Include="Lucid.Rtc" Version="0.1.0" />
This includes everything you need - managed library and native runtimes for all platforms.
For advanced users
If you want to minimize package size, install only the packages you need:
<PackageReference Include="Lucid.Rtc.Core" Version="0.1.0" />
<PackageReference Include="Lucid.Rtc.Native.win-x64" Version="0.1.0" />
Available Packages
| Package | Description | Size |
|---|---|---|
Lucid.Rtc |
Metapackage - Everything included | ~200 MB |
Lucid.Rtc.Core |
Managed library only | ~50 KB |
Lucid.Rtc.Native.All |
All native runtimes | ~200 MB |
Lucid.Rtc.Native.win-x64 |
Windows x64 | ~20 MB |
Lucid.Rtc.Native.win-arm64 |
Windows ARM64 | ~20 MB |
Lucid.Rtc.Native.win-x86 |
Windows x86 | ~20 MB |
Lucid.Rtc.Native.linux-x64 |
Linux x64 | ~20 MB |
Lucid.Rtc.Native.linux-arm64 |
Linux ARM64 | ~20 MB |
Lucid.Rtc.Native.linux-arm |
Linux ARM (32-bit) | ~20 MB |
Lucid.Rtc.Native.osx-x64 |
macOS Intel | ~20 MB |
Lucid.Rtc.Native.osx-arm64 |
macOS Apple Silicon | ~20 MB |
Quick Start
using Lucid.Rtc;
var config = new RtcConfig
{
StunServers = new[] { "stun:stun.l.google.com:19302" }
};
using var client = new RtcClient(config);
// Create offer
var offer = client.CreateOffer("peer1");
Console.WriteLine($"Offer: {offer}");
// Handle events
client.EventReceived += (sender, evt) =>
{
Console.WriteLine($"Event: {evt.Type}");
};
License
MIT
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Lucid.Rtc.Core (>= 0.1.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.