Music player component for .NET apps
fmp
Find a file
2020-09-03 18:05:11 -05:00
FRESHMusicPlayer.Player bump version 2020-09-03 18:05:11 -05: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-08-17 13:00:50 -05:00

banner goes here eventually

FRESHMusicPlayer-Core

Music Player component for Windows 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