mirror of
https://github.com/Royce551/FRESHMusicPlayer-Core.git
synced 2025-01-22 10:51:56 -05:00
Music player component for .NET apps
FRESHMusicPlayer.Player | ||
.gitignore | ||
LICENSE | ||
README.md |
banner goes here eventually
FRESHMusicPlayer-Core
Music Player component for .NET apps - designed to be used for the FRESHMusicPlayer project but can be used on anything :)
Features
- Abstracts music playback into a simple API
- Provides a library that's shared between all FMP Core based apps
- Has built in support for integrations with services like Discord
Usage
using FRESHMusicPlayer;
Player player = new Player();
string path = "Can be a file path, or a URL to a network stream";
player.AddQueue(path); // Everything in FMP runs on a queue
player.PlayMusic(); // Play through the queue
Documentation (WIP)