OwnAudioSharp 2.3.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 OwnAudioSharp --version 2.3.3
NuGet\Install-Package OwnAudioSharp -Version 2.3.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="OwnAudioSharp" Version="2.3.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OwnAudioSharp" Version="2.3.3" />
<PackageReference Include="OwnAudioSharp" />
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 OwnAudioSharp --version 2.3.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: OwnAudioSharp, 2.3.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 OwnAudioSharp@2.3.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=OwnAudioSharp&version=2.3.3
#tool nuget:?package=OwnAudioSharp&version=2.3.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
OwnAudioSharp
Cross-platform audio library for .NET desktop applications
OwnAudioSharp is a professional-grade audio engine providing high-performance audio playback, recording, and processing for Windows, Linux, and macOS with zero external dependencies.
Key Features
- Native Audio Engines: Built on PortAudio and MiniAudio (all platforms) for professional-grade audio processing
- Managed Wrappers: Platform-specific managed engines with WASAPI (Windows), PulseAudio (Linux), and Core Audio (macOS) integration
- Multi-format Support: Built-in decoders for MP3, WAV, and FLAC
- Real-time Processing: Zero-allocation design with lock-free buffers for professional-grade performance
- Advanced Audio Features:
- AI-powered vocal removal (ONNX-based neural separation)
- Audio matchering and mastering
- Real-time chord detection
- Multi-track mixing with synchronization
- Built-in effects and DSP routines
Quick Start
using OwnAudioSharp;
// Initialize the audio engine
OwnaudioNet.Initialize(new AudioConfig
{
SampleRate = 48000,
Channels = 2,
BufferSize = 512
});
// Play an audio file
OwnaudioNet.PlayFile("music.mp3");
// Use the audio mixer
var mixer = new AudioMixer(engine);
mixer.AddSource(audioSource1);
mixer.AddSource(audioSource2);
mixer.Start();
// AI vocal removal
var vocalRemover = new VocalRemover();
vocalRemover.ProcessFile("song.mp3", "vocals.wav", "instrumental.wav");
Platform Support
- Windows: Windows 10/11 (x64, ARM64)
- Linux: Ubuntu, Debian, Fedora, etc. (x64, ARM64)
- macOS: macOS 10.13+ (x64, ARM64)
Architecture
OwnAudioSharp uses a two-layer architecture:
- Engine Layer: Low-level platform-specific audio processing with real-time thread management
- API Layer: High-level thread-safe wrappers with lock-free ring buffers to prevent UI blocking
Documentation
- GitHub: https://github.com/ModernMube/OwnAudioSharp
- Documentation: https://modernmube.github.io/OwnAudioSharp/
License
MIT License - Copyright (c) 2025 ModernMube
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- Avalonia (>= 11.3.9)
- MathNet.Numerics (>= 5.0.0)
- Melanchall.DryWetMidi (>= 8.0.2)
- Microsoft.ML.OnnxRuntime (>= 1.23.2)
- SoundTouch.Net (>= 2.3.2)
- System.Memory (>= 4.6.3)
- System.Numerics.Tensors (>= 10.0.0)
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 |
|---|---|---|
| 2.6.1 | 126 | 2/28/2026 |
| 2.6.0 | 111 | 2/16/2026 |
| 2.5.5 | 135 | 1/28/2026 |
| 2.5.4 | 232 | 1/11/2026 |
| 2.5.3 | 122 | 12/31/2025 |
| 2.4.1 | 187 | 12/21/2025 |
| 2.3.4 | 289 | 12/15/2025 |
| 2.3.3 | 176 | 12/14/2025 |
| 2.3.2 | 212 | 12/13/2025 |
| 2.3.1 | 330 | 12/7/2025 |
| 2.2.0 | 237 | 11/24/2025 |
| 2.1.0 | 171 | 11/8/2025 |
| 2.0.15 | 225 | 11/5/2025 |
| 2.0.0 | 310 | 11/4/2025 |
| 1.0.68 | 271 | 9/21/2025 |
| 1.0.65 | 189 | 9/14/2025 |
| 1.0.62 | 133 | 9/13/2025 |
Loading failed