Basic Playback
Here we show how to play an audio file by creating an audio clip from it and adding it to an audio track.
using Aura;using Aura.Clips;using Aura.Tracks;
public class Program{ private static void Main() { AuraMain.Init(); // Initialize the framework
// Create an audio device using the WaveOut API AuraMain.CreateAudioDevice(AudioAPI.WaveOut);
// Create an audio clip from an audio file var audioClip = new AudioClip("path/to/sound.wav");
// Create an audio track with a name var audioTrack = new AudioTrack("MyTrackName");
// Add the created audio clip to the audio track audioTrack.AddClip(audioClip);
// Start the clip playback audioClip.Play();
// Wait for a keypress before exiting the program Console.ReadKey(); }}
-
The framework is initialized with
AuraMain.Init()
. -
A WASAPI audio device is created with
AuraMain.CreateAudioDevice(AudioAPI.WaveOut)
. -
An audio clip is created from a .wav file.
-
An audio track is created and assigned a name.
-
The created audio clip is added to the created audio track.
-
The audio clip is played.
-
The program waits for a keypress before exiting.