SpawnDev.SIPSorceryMedia.Abstractions
10.0.4
dotnet add package SpawnDev.SIPSorceryMedia.Abstractions --version 10.0.4
NuGet\Install-Package SpawnDev.SIPSorceryMedia.Abstractions -Version 10.0.4
<PackageReference Include="SpawnDev.SIPSorceryMedia.Abstractions" Version="10.0.4" />
<PackageVersion Include="SpawnDev.SIPSorceryMedia.Abstractions" Version="10.0.4" />
<PackageReference Include="SpawnDev.SIPSorceryMedia.Abstractions" />
paket add SpawnDev.SIPSorceryMedia.Abstractions --version 10.0.4
#r "nuget: SpawnDev.SIPSorceryMedia.Abstractions, 10.0.4"
#:package SpawnDev.SIPSorceryMedia.Abstractions@10.0.4
#addin nuget:?package=SpawnDev.SIPSorceryMedia.Abstractions&version=10.0.4
#tool nuget:?package=SpawnDev.SIPSorceryMedia.Abstractions&version=10.0.4
SIPSorceryMedia.Abstractions
This project provides the logic for the interfaces required by the SIPSorcery real-time communications library and the components that provide functions such as:
- Access to audio or video devices (example SIPSorceryMedia.Windows).
- Access to codecs from native libraries (examples SIPSorceryMedia.Encoders and SIPSorceryMedia.FFmpeg).
Important Interfaces
The most important interfacs contained in this library are:
IAudioEncoder: Needs to be implemented by classes that provide audio decoding and/or encoding. An example is the AudioEncoder class.
IVideoEncoder: Needs to be implemented by classes that provide video decoding and/or encoding. An example is the VpxVideoEncoder class.
IAudioSource: Needs to be implemented by classes that act as a source of raw audio samples. Typically a microphone. An example is the WindowsAudioEndPoint class.
IAudioSink: Needs to be implemented by classes that act as a sink for raw audio samples. Typically an audio speaker. An example is the WindowsAudioEndPoint class.
IVideoSource: Needs to be implemented by classes that act as a source of raw video frames. Typically a webcam. An examples is the WindowsVideoEndPoint.
IVideoSink: Needs to be implemented by classes that act as a sink for raw video frames. The video sink is usually a bitmap or some kind of graphics surface. An examples is the WindowsVideoEndPoint.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Framework | net48 is compatible. net481 was computed. |
-
.NETFramework 4.8
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0)
-
net10.0
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0)
-
net8.0
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0)
-
net9.0
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on SpawnDev.SIPSorceryMedia.Abstractions:
| Package | Downloads |
|---|---|
|
SpawnDev.SIPSorcery
SpawnDev's fork of SIPSorcery. Drop-in-compatible: namespace (SIPSorcery.*) and AssemblyName (SIPSorcery) are unchanged from upstream. Modifications: SRTP profiles restricted to browser-compatible set (AEAD_AES_128_GCM, AEAD_AES_256_GCM, AES128_CM_HMAC_SHA1_80), proven BouncyCastle DTLS stack preserved instead of SharpSRTP rewrite for Chrome/Firefox/Edge interop, WaitForIceGatheringToComplete option for trickle-less signaling, NetServices cctor guard for browser WASM. Used by SpawnDev.RTC; install directly if you want the same fixes. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.4 | 35 | 4/23/2026 |
-v8.0.12: Added IAudioEndPoint and GotEncodedMediaFrame to IAudioSink.
-v8.0.10: Change to text encoder interface.
-v8.0.7: New sampling frequencies and all sipsorcery packages release.
-v1.2.1: Expose LogFactory signature to generate generic logger. Added .net8.0 target
-v1.2.0: Add RawImage and new events / methods to avoid the use of byte[] to improve performance.
-v1.1.0: Stable release.
-v1.0.4-pre: Changed IAudioEncoder and IVideoEncoder to use SupportedFormats property instead of IsSupported method.
-v1.0.3-pre: Added video format to IVideoSink.GotVideoFrame. Removed 'V1' from namespace, the versioning mechanism is not going to be suitable for such a formative API.
-v1.0.2-pre: Improved pixel conversion routines to take a stride parameter and handle uneven dimensions.
-1.0.1: Added NV12 as a pixel format option.
-1.0.0: Initial stable release