Terminal and Browser based local music player
BPV - a lightweight music player made using go. BPV is a daemon based player with multiple clients: terminal based TUI client and Browser based web client. It uses bubbletea for the tui and vuejs for web clients.
- multiple clients syncing perfectly
- large music library handling daemon
- beautiful design bot for tui and web clients
- multiple visualizer for the web client
- lightweight by cacheing things
- start the dameon
go run ./cmd/bpvd- run your client
# for web client
cd web/
npm install
npm run dev # then open the provided link
# or after running npm run build, Run
go run ./cmd/bpv --client web
# for tui client
go run ./cmd/bpvYou can use the flake, makefile or manual building
# with nix
nix build .#default # for daemon use .#bpvd, for bpv main binary use .#bpv and for web build use .#web
# with makefile
make build
# manual
go build ./cmd/bpv
go build ./cmd/bpvd
cd web && npm install & npm run buildto install, use home-manager or nixos module, manual
nix profile add github:hoppxi/bpv
# or manually after building move the binaries to $PATH and set BPV_WEB_DIR to the path where your web build isinputs = {
bpv.url = "github:hoppxi/bpv"
};
# ...
# in your home-manager setup
services.bpvd.enable = true; # runs bvpd as a systemd service
programs.bpv.enable = true;MIT License