codecopy / stmp

subsonic terminal music player

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

stmp stmp-git GitHub license

STMP (subsonic terminal music player)

A terminal client for *sonic music servers. Inspired by ncmpcpp.

Features

  • browse by folder
  • queue songs and albums
  • volume control

Dependencies

  • libmpv-dev (build)
  • mpv

Go build dependencies

OSX path setup

On OSX if you installed mpv with brew you'll need to set the following paths

export C_INCLUDE_PATH=/opt/homebrew/include:$C_INCLUDE_PATH
export LIBRARY_PATH=/opt/homebrew/lib:$LIBRARY_PATH

Compiling

stmp should compile normally with go build. Cgo is needed for linking the libmpv header.

Configuration

stmp looks for a config file called stmp.toml in either $HOME/.config/stmp or the directory in which the executible is placed.

Example configuration

[auth]
username = 'admin'
password = 'password'
plaintext = true # Use 'legacy' unsalted password auth. (default: false)

[server]
host = 'https://your-subsonic-host.tld'

Usage

  • 1 - folder view
  • 2 - queue view
  • 3 - playlist view
  • 4 - log (errors, etc) view
  • enter - play song (clears current queue)
  • d/delete - remove currently selected song from the queue
  • D - remove all songs from queue
  • a - add album or song to queue
  • p - play/pause
  • -/= volume down/volume up
  • / - Search artists
  • n - Continue search forward
  • N - Continue search backwards
  • r - refresh the list (if in artist directory, only refreshes that artist)
  • s - add 50 random songs to the queue
  • y - toggle star on song

About

subsonic terminal music player

License:GNU General Public License v3.0


Languages

Language:Go 100.0%