A WIP music player with a focus on build-time modularity, stability, and performance.
  • C 93.5%
  • C++ 4.3%
  • Meson 2.1%
  • Assembly 0.1%
Find a file
2026-06-14 15:44:11 -04:00
.vscode Implement EventQueue API for win32 2025-07-01 23:23:28 -04:00
feature-tests Add struct padding feature test 2026-05-03 20:53:50 -04:00
src Merge branch 'feature/termio-cleanup' of github.com:very-amused/mpl into feature/termio-cleanup 2026-06-14 14:46:34 -04:00
subprojects Working build with libfast 2025-10-23 00:21:18 -04:00
.gitignore Working build with libfast 2025-10-23 00:21:18 -04:00
CHANGELOG.md v0.5.0 2026-06-14 15:44:11 -04:00
LICENSE Initial commit 2025-03-04 18:58:01 -05:00
meson.build v0.5.0 2026-06-14 15:44:11 -04:00
meson.options Code quality improvements 2026-05-14 15:17:41 -04:00
mpl.conf Change default bindings for shell history 2026-06-13 14:56:43 -04:00
README.md Update README 2026-05-22 03:59:43 -04:00

MPL (Music Player Light)

A WIP music player with a focus on build-time modularity, stability, and performance.

Compiling

Dependencies

  • ffmpeg
  • readline
  • A Nerd Font (needed for icons, can be disabled with -Dnerdfont_icons=false)

Configure

meson setup build
cd build
meson configure -Dbuildtype=release # debug is the default build type

### Customization:
meson configure -Dnerdfont_icons=false # Enable/disable Nerdfont icons (default: true)

### DEV OPTIONS:
# Build with emulated audio output (no sound):
meson configure -Dao_fast=true # useful for compatibility checking on platforms before implementing an AudioBackend

All compile-time options can be seen in meson.options. Use these to customize MPL to your liking.

Build

ninja

Install

sudo ninja install

Uninstall

sudo ninja uninstall