banner goes here eventually
audio library abstraction library - designed to be used for the FRESHMusicPlayer project but can be used on anything :)
- Abstracts music playback into a simple API
- todo: add more stuff here
using FRESHMusicPlayer;
var player = new Player();
string path = "Can be a file path, or a URL to a network stream";
player.PlayMusic(path); // Clear the queue, add the track to the queue, and play
// or
player.Queue.Add(path);
player.PlayMusic(); // Plays through the queue
Windows - NAudio is required for audio playback
Other platforms - You'll need to include the VLC audio plugin in the output directory of your app for audio playback to work. The user will also need to have a global installation of VLC available. Hoping to replace this with something lighterweight in the future.