Music player component for .NET apps
fmp
Find a file
2021-03-07 19:21:27 -06:00
FRESHMusicPlayer.Player CDLib updates 2021-03-07 19:21:27 -06:00
.gitignore Initial commit 2020-07-06 23:00:59 -05:00
.gitmodules Add CDLib backend 2021-02-11 19:23:04 -06:00
LICENSE Initial commit 2020-07-06 23:00:59 -05:00
README.md Update README.md 2020-11-20 00:06:32 -06:00

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)

Projects that use FMP Core