Runs cliamp without a TUI: serves the existing IPC over its Unix socket, auto-advances tracks on Drained(), exits cleanly on SIGINT/SIGTERM. Unlocks Waybar/Polybar modules, hotkey scripts, systemd units, and cron timers. UI-only commands (theme, vis) return an error in this mode. playTrack releases the daemon mutex during the blocking Play/PlayYTDL setup so concurrent IPC requests (e.g. cliamp status) don't stall for the 1-3s of HTTP/yt-dlp probe time. Player internals are already thread-safe. Docs: docs/headless.md with use cases (systemd, Waybar, Hyprland, cron, SSH, embedded), linked from README and remote-control.md.
A retro terminal music player inspired by Winamp. Play local files, streams, podcasts, YouTube, YouTube Music, SoundCloud, Bilibili, Spotify, Xiaoyuzhou (小宇宙), Navidrome, Plex, and Jellyfin with a spectrum visualizer, parametric EQ, and playlist management.
Built with Bubbletea, Lip Gloss, Beep, and go-librespot.
https://github.com/user-attachments/assets/fbc33d20-e3ac-4a62-a991-8a2f0243c8ea
Install
curl -fsSL https://raw.githubusercontent.com/bjarneo/cliamp/HEAD/install.sh | sh
Homebrew
brew install bjarneo/cliamp/cliamp
The formula pulls in all required runtime libraries automatically.
Arch Linux (AUR)
yay -S cliamp
Pre-built binaries
Download from GitHub Releases.
macOS: the pre-built binaries dynamically link against FLAC, Vorbis, and Ogg from Homebrew. If you download directly from Releases (or use the
install.shscript) you must install them first, otherwise you will see errors likeLibrary not loaded: /opt/homebrew/opt/libvorbis/lib/libvorbisenc.2.dylib:brew install flac libvorbis liboggInstalling via
brew install bjarneo/cliamp/cliampdoes this for you.Linux: the pre-built binaries statically link FLAC, Vorbis, and Ogg, so no extra codec packages are required. You may still need an ALSA bridge for your sound server — see Troubleshooting.
Optional runtime dependencies (all platforms, all install methods):
- ffmpeg — for AAC, ALAC, Opus, and WMA playback
- yt-dlp — for YouTube, YouTube Music, SoundCloud, Bandcamp, and Bilibili
On macOS: brew install ffmpeg yt-dlp. On Linux, use your distribution's package manager.
Build from source
git clone https://github.com/bjarneo/cliamp.git && cd cliamp && go build -o cliamp .
Quick Start
cliamp ~/Music # play a directory
cliamp *.mp3 *.flac # play files
cliamp https://example.com/stream # play a URL
Press Ctrl+K to see all keybindings.
Configure remote providers (Navidrome, Plex, Jellyfin, Spotify, YouTube Music) with the interactive wizard:
cliamp setup
It walks you through each provider, validates the connection, and writes the right block to ~/.config/cliamp/config.toml. See docs/cli.md for details.
Radio
Press R in the player to browse and search 30,000+ online radio stations from the Radio Browser directory.
Add your own stations to ~/.config/cliamp/radios.toml. See docs/configuration.md.
Want to host your own radio? Check out cliamp-server.
Building from source
Prerequisites:
- Go 1.25.5 or later
- ALSA development headers (Linux only — required by the audio backend)
Linux (Debian/Ubuntu):
sudo apt install libasound2-dev
Linux (Fedora):
sudo dnf install alsa-lib-devel
Linux (Arch):
sudo pacman -S alsa-lib
macOS: No extra dependencies — CoreAudio is used.
Clone and build:
git clone https://github.com/bjarneo/cliamp.git
cd cliamp
make && make install
Or without Make: go build -o cliamp .
make install places the binary in ~/.local/bin/.
Optional runtime dependencies:
- ffmpeg — for AAC, ALAC, Opus, and WMA playback
- yt-dlp — for YouTube, SoundCloud, Bandcamp, and Bilibili
Docs
- Configuration
- Keybindings
- CLI Flags
- Streaming
- Playlists
- YouTube, SoundCloud, Bandcamp and Bilibili
- YouTube Music
- SoundCloud
- Lyrics
- Spotify
- Navidrome
- Plex
- Jellyfin
- Themes
- SSH Streaming
- Remote Control (IPC)
- Headless Daemon Mode
- Audio Quality
- Media Controls
- Lua Plugins
Troubleshooting
No audio output (silence with no errors)
On Linux systems using PipeWire or PulseAudio, cliamp's ALSA backend needs a bridge package to route audio through your sound server:
- PipeWire:
pipewire-alsa - PulseAudio:
pulseaudio-alsa
Install the appropriate package for your system:
# PipeWire (Arch)
sudo pacman -S pipewire-alsa
# PulseAudio (Arch)
sudo pacman -S pulseaudio-alsa
# Debian/Ubuntu (PipeWire)
sudo apt install pipewire-alsa
Author
Disclaimer
Use this software at your own risk. We are not responsible for any damages or issues that may arise from using this software.