JAJ.Packages.MiniAudioEx 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package JAJ.Packages.MiniAudioEx --version 1.2.0
NuGet\Install-Package JAJ.Packages.MiniAudioEx -Version 1.2.0
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="JAJ.Packages.MiniAudioEx" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JAJ.Packages.MiniAudioEx --version 1.2.0
#r "nuget: JAJ.Packages.MiniAudioEx, 1.2.0"
#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.
// Install JAJ.Packages.MiniAudioEx as a Cake Addin
#addin nuget:?package=JAJ.Packages.MiniAudioEx&version=1.2.0

// Install JAJ.Packages.MiniAudioEx as a Cake Tool
#tool nuget:?package=JAJ.Packages.MiniAudioEx&version=1.2.0

MiniAudioExNET

A .NET wrapper for MiniAudioEx. MiniAudioEx is a a modified version of MiniAudio, see this repository. The goal of MiniAudioExNET is to make it easy to add audio playback to .NET applications. I've tried several libraries in the past and none of them could offer all of the things I was looking for:

  • Easy to set up and interact with.
  • Spatial audio.
  • Cross platform.
  • A permissive license.

This library ticks all these boxes. There are some (in my opinion) minor things missing such as more audio format decoders, but at least 3 widely used formats are supported which is sufficient for my needs. If you would like to have support for more formats, then please make your request here.

Features

  • Playback of various audio formats such as WAV/MP3/FLAC.
  • Stream audio from disk or from memory.
  • Callbacks for effects processing and generating audio.
  • Spatial properties like doppler effect, pitching, distance attenuation and panning.

Platforms

MiniAudio was designed to work on every major platform, however I do not have a Mac so I can not build a library for Mac OS. As a result only Windows and Linux libraries are currently available.

Installation

dotnet add package JAJ.Packages.MiniAudioEx --version 1.2.0

General gotchas

  • Don't manually dispose an AudioClip/AudioSource/AudioListener. These get cleaned up after calling MiniAudioEx.Deinitialize.
  • Reuse audio clips. If you have loaded an AudioClip from memory, then the library allocates memory that the garbage collector doesn't free. All memory is freed after calling MiniAudioEx.Deinitialize. It is perfectly fine to reuse audio clips across multiple audio sources, so you don't have to load multiple clips with the same sound. A good strategy is to store your audio clips in an array or a list for the lifetime of your application.
  • Call MiniAudioEx.Update from your main thread loop. The only reason this method exists is because the End callback of an audio source originates from an audio thread, and we want to move this notification to the main thread which requires polling. The advantage this brings is that you can safely call API functions from within the End callback. An example use of the End callback is scheduling the next clip to be played.
  • The Process and Read event run on a separate thread as well. You should not call any MiniAudioEx API functions from these callbacks.
  • Currently only a single audio listener is supported.

Example 1 (Playing from file)

using System;
using System.Threading;
using MiniAudioExNET;

namespace MiniAudioExExample
{
    class Program
    {
        static readonly uint SAMPLE_RATE = 44100;
        static readonly uint CHANNELS = 2;

        static void Main(string[] args)
        {
            Console.CancelKeyPress += OnCancelKeyPress;

            MiniAudioEx.Initialize(SAMPLE_RATE, CHANNELS);
            
            AudioSource source = new AudioSource();

            AudioClip clip = new AudioClip("some_audio.mp3", true);
            source.Play(clip);
            
            while(true)
            {
                MiniAudioEx.Update();
                Thread.Sleep(10);
            }
        }

        static void OnCancelKeyPress(object sender, ConsoleCancelEventArgs e)
        {
            MiniAudioEx.Deinitialize();
        }
    }
}

Example 2 (Procedural audio)

using System;
using System.Threading;
using MiniAudioExNET;

namespace MiniAudioExExample
{
    class Program
    {
        static readonly uint SAMPLE_RATE = 44100;
        static readonly uint CHANNELS = 2;

        static void Main(string[] args)
        {
            Console.CancelKeyPress += OnCancelKeyPress;

            MiniAudioEx.Initialize(SAMPLE_RATE, CHANNELS);
            
            AudioSource source = new AudioSource();

            AudioClip clip = new AudioClip();
            source.Loop = true;
            source.Play();
            
            while(true)
            {
                MiniAudioEx.Update();
                Thread.Sleep(10);
            }
        }

        static void OnCancelKeyPress(object sender, ConsoleCancelEventArgs e)
        {
            MiniAudioEx.Deinitialize();
        }

        static long timeCounter = 0;

        static void OnAudioRead(Span<float> framesOut, ulong frameCount, int channels)
        {
            float sample = 0.0f;
            float frequency = 440.0f;

            for(int i = 0; i < framesOut.Length; i+=channels)
            {
                sample = (float)Math.Sin(2 * Math.PI * frequency * timeCounter / SAMPLE_RATE);
                framesOut[i] = sample;
                if(channels == 2)
                    framesOut[i+1] = sample;
                timeCounter++;
            }
        }
    }
}

Example 3 (Spatial audio)

using System;
using System.Threading;
using MiniAudioExNET;

namespace MiniAudioExExample
{
    class Program
    {
        static readonly uint SAMPLE_RATE = 44100;
        static readonly uint CHANNELS = 2;

        static void Main(string[] args)
        {
            Console.CancelKeyPress += OnCancelKeyPress;

            MiniAudioEx.Initialize(SAMPLE_RATE, CHANNELS);

            AudioListener listener = new AudioListener();
            listener.Position = new Vector3f(0, 0, 0);
            
            AudioSource source = new AudioSource();

            AudioClip clip = new AudioClip("some_audio.mp3", true);
            source.Loop = true;
            source.Spatial = true;
            source.Position = new Vector3f(10, 0, 0);
            source.Play(clip);
            
            while(true)
            {
                MiniAudioEx.Update();
                Thread.Sleep(10);
            }
        }

        private static void OnCancelKeyPress(object sender, ConsoleCancelEventArgs e)
        {
            MiniAudioEx.Deinitialize();
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 is compatible.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.
  • net7.0

    • No dependencies.

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
1.7.0 0 5/22/2024
1.6.4 46 5/20/2024
1.6.3 45 5/19/2024
1.6.2 47 5/18/2024
1.6.1 52 5/17/2024
1.6.0 49 5/16/2024
1.5.4 56 5/15/2024
1.5.3 79 5/15/2024
1.5.2 74 5/13/2024
1.5.1 66 5/13/2024
1.5.0 69 5/13/2024
1.4.2 72 5/12/2024
1.3.0 73 5/11/2024
1.2.0 77 5/10/2024
1.1.0 81 5/9/2024
1.0.3 92 4/24/2024
1.0.2 92 4/23/2024
1.0.1 97 2/3/2024
1.0.0 169 12/16/2023