Skip to content

Latest commit

 

History

History
227 lines (150 loc) · 8.9 KB

README.md

File metadata and controls

227 lines (150 loc) · 8.9 KB

STMPS (Subsonic Terminal Music Player S)

Stamps is a terminal client for *sonic music servers, inspired by ncmpcpp and musickube.

Main Branch: Build+Test Linux Build+Test macOS

Dev Branch: Build+Test Linux Build+Test macOS

Features

  • Browse by folder
  • Queue songs and albums
  • Create and play playlists
  • Search music library
  • Mark favorites
  • Volume control
  • Server-side scrobbling (e.g., on Navidrome, gonic)
  • MPRIS2 control and metadata

Screenshots

These screenshots use Navidrome's demo server (config file).

Queue

Queue View

Browser

Browser View

Dependencies

Required Software

  • mpv
  • Linux (Debian/Ubuntu): apt install pkg-config libmpv libmpv-dev
  • MacOS (Homebrew): brew install pkg-config mpv (not the cask)

Go Build Dependencies

Compiling

Compile STMPS with go build. Cgo is needed for interfacing with libmpv.

STMPS can be installed without checking out the repository by running:

  go install github.com/spezifisch/stmps@latest

Developers & Distribution Packagers

There's a Makefile with tasks for:

  • Updating the CHANGELOG.md
  • Running tests & linting commands
  • Compiling an executable with a derived tag for the version

These tasks depend on the following tools:

Configuration

STMPS looks for a configuration file named stmp.toml in either $HOME/.config/stmp or the directory containing the executable.

Example Configuration

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

[server]
host = 'https://your-subsonic-host.tld'
scrobble = true  # Use Subsonic scrobbling for last.fm/ListenBrainz (default: false)

[client]
random-songs = 50

[ui]
spinner = '▁▂▃▄▅▆▇█▇▆▅▄▃▂▁'

Usage

General Navigation

  • Q: Quit
  • 1: Folder view
  • 2: Queue view
  • 3: Playlist view
  • 4: Search view
  • 5: Log (errors, etc.) view
  • Escape/Return: Close modal if open

Playback Controls

These controls are accessible from any view:

  • p: Play/pause
  • P: Stop
  • >: Next song
  • -/=: Volume down/volume up
  • ,/.: Seek -10/+10 seconds
  • r: Add 50 random songs to the queue
  • s: Start a server library scan

Browser Controls

  • Enter: Play song (clears current queue)
  • a: Add album or song to queue
  • y: Toggle star on song/album
  • A: Add song to playlist
  • R: Refresh the list (if in artist directory, only refreshes that artist)
  • /: Search artists
  • n: Continue search forward
  • N: Continue search backward
  • S: Add similar artist/song/album to playlist

Queue Controls

  • d/Delete: Remove currently selected song from the queue
  • D: Remove all songs from queue
  • y: Toggle star on song
  • k: Move song up in queue
  • j: Move song down in queue
  • s: Save the queue as a playlist
  • S: Shuffle the songs in the queue
  • l: Load a queue previously saved to the server

When stmps exits, the queue is automatically recorded to the server, including the position in the song being played. There is a single queue per user that can be thusly saved. Because empty queues can not be stored on Subsonic servers, this queue is not automatically loaded; the l binding on the queue page will load the previous queue and seek to the last position in the top song.

If the currently playing song is moved, the music is stopped before the move, and must be re-started manually.

The save function includes an autocomplete function; if an existing playlist is selected (or manually entered), the Overwrite checkbox must be checked, or else the queue will not be saved. If a playlist is saved over, it will be replaced with the queue contents.

Playlist Controls

  • n: New playlist
  • d: Delete playlist
  • a: Add playlist or song to queue

On servers with a large number of songs in the playlists, Subsonic can take a while to respond to a request for a list. stmps therefore loads playlists in the background, and will display a spinner next to the "playlist" tab label at the bottom. This spinner can be configured with the ui.spinner option in the config file. Some ideas are:

spinner = '▁▂▃▄▅▆▇█▇▆▅▄▃▁'
spinner = '⠁⠂⠄⡀⢀⠠⠐⠈'
spinner = '|/-\'
spinner = '▖▘'
spinner = '▖▌▘'
spinner = '┤┘┴└├┌┬┐'
spinner = '⣾⣽⣻⢿⡿⣟⣯⣷'

The default is ▉▊▋▌▍▎▏▎▍▌▋▊▉. Set only one of these at a time, and the glyphs must exist in the font that the terminal running stmps is using.

Search Controls

The search tab performs a server-side search for text in metadata name fields. The search results are filtered into three columns: artist, album, and song, where each entry matches the query in name or title.

In any of the columns:

  • /: Focus search field.
  • Enter / a: Adds the selected item recursively to the queue.
  • Left/right arrow keys (, ) navigate between the columns
  • Up/down arrow keys (, ) navigate the selected column list

In the search field:

  • Enter: Perform the query.
  • Escape: Escapes into the columns, where the global key bindings work.

Note that the Search page is not a browser like the Browser page: it displays the search results returned by the server. Selecting a different artist will not change the album or song search results. OpenSubsonic servers implement the search function differently; in gonic, if you search for "black", you will get artists with "black" in their names in the artists column; albums with "black" in their titles in the albums column; and songs with "black" in their titles in the songs column. Navidrome appears to include all results with "black" anywhere in their IDv3 metadata. Since the API search results filteres these matches into sections -- artists, albums, and songs -- this means that, with Navidrome, you may see albums that don't have "black" in their names; maybe "black" is in their artist title.

Advanced Configuration and Features

MPRIS2 Integration

To enable MPRIS2 support (Linux only), run STMPS with the -mpris flag. Ensure you have D-Bus set up correctly on your system.

MacOS Media Control

On MacOS, STMPS integrates with the native MediaPlayer framework to handle system media controls. This is automatically enabled if running on MacOS. Note: This is work in progress.

Profiling

To profile the application, use the following flags:

  • -cpuprofile=<file>: Write CPU profile to file
  • -memprofile=<file>: Write memory profile to file

These flags are useful for performance debugging and analysis.

Debugging and Logs

View logs and error messages in the log view by pressing 4. This can help diagnose issues with server connections, playback, or other functionalities.

Contributing

Contributions are welcome! Feel free to open issues or submit pull requests on GitHub. For major changes, please discuss first to ensure alignment with the project goals.

Please base your PRs against the main branch.

Note that pre-commit hooks are supplied. You can use them to automatically ensure proper formatting before committing. Alternatively, you might be able configure your editor to do this via gofmt for you.

Credits

This is a fork of STMP. See AUTHORS for more information. The codebase has diverged significantly from the original.

Licensing

STMPS is licensed under the GNU General Public License v3.0 (GPL-3.0-only). This license allows you to freely use, modify, and distribute the software, provided that any distributed versions of the software, or derivative works, are also licensed under the GPL-3.0-only.

For more details, refer to the LICENSE file in the repository.