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
                    
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="SpawnDev.SIPSorceryMedia.Abstractions" Version="10.0.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SpawnDev.SIPSorceryMedia.Abstractions" Version="10.0.4" />
                    
Directory.Packages.props
<PackageReference Include="SpawnDev.SIPSorceryMedia.Abstractions" />
                    
Project file
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 SpawnDev.SIPSorceryMedia.Abstractions --version 10.0.4
                    
#r "nuget: SpawnDev.SIPSorceryMedia.Abstractions, 10.0.4"
                    
#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 SpawnDev.SIPSorceryMedia.Abstractions@10.0.4
                    
#: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=SpawnDev.SIPSorceryMedia.Abstractions&version=10.0.4
                    
Install as a Cake Addin
#tool nuget:?package=SpawnDev.SIPSorceryMedia.Abstractions&version=10.0.4
                    
Install as a Cake Tool

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:

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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