FRESHMusicPlayer-Core/README.md
2020-08-17 13:00:50 -05:00

956 B

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