Music player component for .NET apps
fmp
Find a file
2020-12-28 13:47:22 -06:00
FRESHMusicPlayer.Player various fixes and improvements 2020-12-28 13:42:27 -06:00
.gitignore Initial commit 2020-07-06 23:00:59 -05: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