Aurio 4.1.0
See the version list below for details.
dotnet add package Aurio --version 4.1.0
NuGet\Install-Package Aurio -Version 4.1.0
<PackageReference Include="Aurio" Version="4.1.0" />
paket add Aurio --version 4.1.0
#r "nuget: Aurio, 4.1.0"
// Install Aurio as a Cake Addin #addin nuget:?package=Aurio&version=4.1.0 // Install Aurio as a Cake Tool #tool nuget:?package=Aurio&version=4.1.0
Aurio: Audio Stream Processing & Retrieval for .NET
Aurio is an open source .NET audio library for stream processing, analysis and retrieval.
Features
- 32-bit floating point audio stream processing engine
- File I/O (using NAudio and FFmpeg)
- FFT and iFFT (using Exocortex.DSP, FftSharp, FFTW, PFFFT)
- Resampling (using NAudio, libsamplerate, Soxr)
- Windowing, overlap-adding, STFT, iSTFT
- Chroma
- Dynamic Time Warping
- On-line Time Warping (Dixon, Simon. "Live tracking of musical performances using on-line time warping." Proceedings of the 8th International Conference on Digital Audio Effects. 2005.)
- Fingerprinting
- Haitsma, Jaap, and Ton Kalker. "A highly robust audio fingerprinting system." ISMIR. 2002.
- Wang, Avery. "An Industrial Strength Audio Search Algorithm." ISMIR. 2003.
- Echoprint (Ellis, Daniel PW, Brian Whitman, and Alastair Porter. "Echoprint: An open music identification service." ISMIR. 2011.)
- AcoustID Chromaprint
- Audio playback
- UI widgets
All audio processing (incl. fingerprinting) is stream-based and supports processing of arbitrarily long streams at constant memory use.
Packages
Aurio
: The core library.Aurio.Windows
: Audio player and MP3 decoder. Windows only.Aurio.WaveControls
: WPF controls and utilities for UIs. Windows only.- Spectrogram / Chromagram View, Spectrum / Graph View, VU Meter, Correlometer, Time Scale, Wave View
Decoders
Name | Formats | Description | License |
---|---|---|---|
Aurio (core) |
PCM Wave | Managed NAudio decoder. | MIT |
Aurio.Windows |
MP3 | Uses Windows's ACM codec through NAudio. Windows only. | MIT |
Aurio.FFmpeg |
many | Decodes a very wide range of media container formats and codecs through FFmpeg. Windows and Linux. | LGPL |
Resamplers
Name | Description | Variable Rate Support | License |
---|---|---|---|
Aurio (core) |
Managed NAudio WDL resampler. Recommended for cross-platform use. | yes | MIT |
Aurio.LibSampleRate |
Native libsamplerate (a.k.a. Secret Rabbit Code) library. Windows only*. |
yes | GPL |
Aurio.Soxr |
Native SoX Resampler library. Windows only*. | yes (depending on config) | LGPL |
(*) Linux binary not integrated yet.
FFTs
Name | Description | In-Place Transform | Inverse Transform | License |
---|---|---|---|---|
Aurio.Exocortex |
Exocortex.DSP library. Fastest managed FFT, recommended for cross-platform use. | yes | yes | BSD |
Aurio.FftSharp |
FftSharp library. Much slower than Exocortex. | no | yes | MIT |
Aurio.FFTW |
Native FFTW (Fastest Fourier Transform in the West) library. Much faster than the managed implementations. Windows only*. | yes | no | GPL |
Aurio.PFFFT |
Native PFFFT (pretty Fast FFT) library. Even faster than FFTW, recommended for high-performance use. Windows only*. | yes | yes | FFTPACK |
(*) Linux binary not integrated yet.
Documentation
Not available yet. If you have any questions, feel free to open an issue!
Examples
Select Decoders
using Aurio;
// The stream factory automatically selects an appropriate decoder stream
// for a given input. Multiple decoders can be added. The PCM Wave decoder
// is added by default.
// Add Aurio.Windows MP3 decoder
AudioStreamFactory.AddFactory(new Windows.NAudioStreamFactory());
// Add Aurio.FFmpeg decoder
AudioStreamFactory.AddFactory(new FFmpeg.FFmpegAudioStreamFactory());
var stream = AudioStreamFactory.FromFileInfo(new FileInfo("./media.file"));
// Alternatively, decoders can be directly used without the factory
var stream = FFmpegSourceStream(new FileInfo("./media.file"));
Select Resampler
using Aurio.Resampler;
using Aurio.Streams;
// Only one resampler can be selected at a time.
// Use managed NAudio resampler from core
ResamplerFactory.Factory = new Aurio.NAudioWdlResamplerFactory();
// or Aurio.Soxr
ResamplerFactory.Factory = new Aurio.Soxr.ResamplerFactory();
// or Aurio.LibSampleRate
ResamplerFactory.Factory = new Aurio.LibSampleRate.ResamplerFactory();
// Needs resampler factory, throws otherwise
var stream = new ResamplingStream(...);
Select FFT
using Aurio;
using Aurio.FFT;
// Only one FFT can be selected at a time.
// Use Aurio.Exocortex
FFTFactory.Factory = new Exocortex.FFTFactory();
// or Aurio.Exocortex
FFTFactory.Factory = new FftSharp.FFTFactory();
// or Aurio.FFTW
FFTFactory.Factory = new FFTW.FFTFactory();
// or Aurio.PFFFT
FFTFactory.Factory = new PFFFT.FFTFactory();
// Needs FFT factory, throws otherwise
var stft = new STFT(...);
Stream Processing
// Read MKV movie with surround audio
var sourceStream = new FFmpegSourceStream(new FileInfo("media.mkv"));
// Convert to 32-bit
var ieee32BitStream = new IeeeStream(sourceStream);
// Downmix to stereo
var downmixStream = new SurroundDownmixStream(ieee32BitStream);
// Downmix to mono
var monoStream = new MonoStream(downmixStream);
// Concatenate with other streams
var concatStream = new ConcatenationStream(monoStream, anotherStream, ...);
// Turn volume down to 50%
var volumeStream = new VolumeControlStream(concatStream) { Volume = 0.5f, Balance = 1, Mute = false };
// Mix with another stream
var mixerStream = new MixerStream(concatStream.Properties.Channels, concatStream.Properties.SampleRate);
mixerStream.Add(volumeStream);
mixerStream.Add(yetAnotherStream);
// Skip the first 10 samples
var cropStream = new CropStream(mixerStream, mixerStream.Properties.SampleBlockByteSize * 10, mixerStream.Length);
// Clip samples at max volume
var clipStream = new VolumeClipStream(cropStream);
// Downsample to telephone sound quality
var resamplingStream = new ResamplingStream(clipStream, ResamplingQuality.Low, 8000);
// Write it to a WAV fil
var sinkStream = new NAudioSinkStream(resamplingStream);
WaveFileWriter.CreateWaveFile("telephone-audio.wav", sinkStream);
STFT
// Setup STFT with a window size of 100ms and an overlap of 50ms
var source = AudioStreamFactory.FromFileInfoIeee32(new FileInfo("audio.wav"));
var windowSize = source.Properties.SampleRate/10;
var hopSize = windowSize/2;
var stft = new STFT(source, windowSize, hopSize, WindowType.Hann);
var spectrum = new float[windowSize/2];
// Read all frames and get their spectrum
while (stft.HasNext()) {
stft.ReadFrame(spectrum);
// do something with the spectrum (e.g. build spectrogram)
}
FFT Equalizer
var source = new IeeeStream(...);
var target = new MemoryWriterStream(new System.IO.MemoryStream(), source.Properties);
var windowSize = 512;
var hopSize = windowSize/2+1; // for COLA condition
var window = WindowType.Hann;
var stft = new STFT(source, windowSize, hopSize, window);
var istft = new InverseSTFT(target, windowSize, hopSize, window);
var spectrum = new float[windowSize/2];
while (stft.HasNext()) {
stft.ReadFrame(spectrum);
// manipulate spectrum
istft.WriteFrame(spectrum);
}
istft.Flush();
Generate fingerprints
// Setup the source (AudioTrack is Aurio's internal representation of an audio file)
var audioTrack = new AudioTrack(new FileInfo("somefilecontainingaudio.ext"));
// Setup the fingerprint generator (each fingerprinting algorithms has its own namespace but works the same)
var defaultProfile = FingerprintGenerator.GetProfiles()[0]; // the first one is always the default profile
var generator = new FingerprintGenerator(defaultProfile);
// Setup the generator event listener
generator.SubFingerprintsGenerated += (sender, e) => {
// Print the hashes
e.SubFingerprints.ForEach(sfp => Console.WriteLine("{0,10}: {1}", sfp.Index, sfp.Hash));
};
// Generate fingerprints for the whole track
generator.Generate(audioTrack);
Fingerprinting & Matching
// Setup the sources
var audioTrack1 = new AudioTrack(new FileInfo("somefilecontainingaudio1.ext"));
var audioTrack2 = new AudioTrack(new FileInfo("somefilecontainingaudio2.ext"));
// Setup the fingerprint generator
var defaultProfile = FingerprintGenerator.GetProfiles()[0];
var generator = new FingerprintGenerator(defaultProfile);
// Create a fingerprint store
var store = new FingerprintStore(defaultProfile);
// Setup the generator event listener (a subfingerprint is a hash with its temporal index)
generator.SubFingerprintsGenerated += (sender, e) => {
var progress = (double)e.Index / e.Indices;
var hashes = e.SubFingerprints.Select(sfp => sfp.Hash);
store.Add(e);
};
// Generate fingerprints for both tracks
generator.Generate(audioTrack1);
generator.Generate(audioTrack2);
// Check if tracks match
if (store.FindAllMatches().Count > 0) {
Console.WriteLine("overlap detected!");
}
Multitrack audio playback
var drumTrack = new AudioTrack(new FileInfo("drums.wav"));
var guitarTrack = new AudioTrack(new FileInfo("guitar.wav"));
var vocalTrack = new AudioTrack(new FileInfo("vocals.wav"));
var band = new TrackList<AudioTrack>(new[] {drumTrack, guitarTrack, vocalTrack});
new MultitrackPlayer(band).Play();
Support
For questions and issues, please open an issue on the issue tracker. Commercial support, development and consultation is available through Protyposis Multimedia Solutions.
Patents
Please be aware that this library may contain code covered by patents. Users are advised to seek legal counsel to ensure compliance with all relevant patent laws and licensing requirements. For example, there are patents covering the fingerprinting methods by Haitsma & Kalker, Wang, and Echoprint. Their usage may therefore be severely limited.
License
Copyright (C) 2010-2023 Mario Guggenberger mg@protyposis.net.
This project is released under the terms of the GNU Affero General Public License. See LICENSE
for details. The library can be built to be free of any copyleft requirements; get in touch if the AGPL does not suit your needs.
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
- NAudio.Core (>= 2.2.1)
NuGet packages (10)
Showing the top 5 NuGet packages that depend on Aurio:
Package | Downloads |
---|---|
Aurio.FFmpeg
Extension library for Aurio, which provides audio decoding through FFmpeg (see https://ffmpeg.org/). |
|
Aurio.FftSharp
Extension library for Aurio, which provides audio FFT and iFFT through the external FftSharp library (see https://github.com/swharden/FftSharp/). |
|
Aurio.LibSampleRate
Extension library for Aurio, which provides audio resampling through the external libsamplerate/SecretRabbitCode library (see https://github.com/libsndfile/libsamplerate). |
|
Aurio.Exocortex
Extension library for Aurio, which provides audio FFT and iFFT through the Exocortex.DSP library (see https://benhouston3d.com/dsp/). |
|
Aurio.Soxr
Extension library for Aurio, which provides audio resampling through the external Soxr (SoX Resampler) library (see https://github.com/chirlu/soxr). |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Aurio:
Repository | Stars |
---|---|
protyposis/AudioAlign
Audio Synchronization and Analysis Tool
|