Terminal Music and Podcast Player written in Rust
Listen to music and podcasts freely as both in freedom and free of charge!
Freedom: As time goes by, online service providers control pretty much everything we listen to. Complicated copyright issues make things worse. If my favorite song cannot be found on a website, I'll probably just not listen to them for years.
Free of charge: You can download from YouTube, NetEase, Migu and KuGou for free. No need to register for monthly paid memberships.
As a contributor of GOMU, I met serious problems during development. The main problem is data race condition. So I rewrote the player in rust, and hope to solve the problem.
Supported Formats
Below are the audio formats supported by the various backends.
In the case that metadata is not supported, an attempt will still be made to play the file.
| Container | Rusty | MPV | Gstreamer | Metadata |
|---|---|---|---|---|
| MP4 / M4A | Yes | Yes | Yes | Yes |
| MP3 | Yes | Yes | Yes | Yes |
| OGG | Yes | Yes | Yes | Yes |
| FLAC | Yes | Yes | Yes | Yes |
| ADTS | Yes | Yes | Yes | Yes |
| WAV / AIFF | Yes | Yes | Yes | Yes |
| CAF | Yes | Yes | Yes | No |
| MKV / WebM | Yes | Yes | Yes | No |
| Codec | Rusty | MPV | Gstreamer |
|---|---|---|---|
| AAC-LC | Yes | Yes | Yes |
| HE-AAC | No | Yes | Yes |
| MP3 / MP2 / MP1 | Yes | Yes | Yes |
| FLAC | Yes | Yes | Yes |
| WAV | Yes | Yes | Yes |
| VORBIS | Yes | Yes | Yes |
| OPUS | No*1 | Yes | Yes |
| ADPCM | Yes | Yes | Yes |
| PCM | Yes | Yes | Yes |
*1: Opus codec is supported in rusty backend if feature rusty-libopus is enabled.
Installation
Requirements
MSRV
The minimal Rust version required to build this project is 1.85.0.
Note that using non-default features might increase the MSRV.
Dependencies
Linux
| Package name (ubuntu) | Package name (arch) | Required | Build-time-only | Feature | Description | MSRV |
|---|---|---|---|---|---|---|
git |
git |
X | X | version control | ||
clang |
clang |
X | X | General Build tools (and sqlite compile) | ||
protobuf-compiler |
protobuf |
X | X | communication protocol between server and client(tui) | ||
libdbus-1-dev |
dbus |
X | unknown | MPRIS media control | ||
libasound2-dev |
alsa-lib |
X | unknown | ALSA headers | ||
yt-dlp |
yt-dlp |
Download some tracks | ||||
ffmpeg |
ffmpeg |
Post-Processing for yt-dlp |
||||
mpv |
mpv |
mpv |
MPV Backend | |||
gstreamer |
gstreamer |
gst |
Gstreamer Backend | |||
libopus |
libopus |
X | rusty-libopus |
Opus codec support in rusty backend | 1.89.0 |
|
libsixel |
libsixel |
X | cover-viuer-sixel |
Sixel protocol support | ||
ueberzugpp |
ueberzugpp |
cover-ueberzug |
Ueberzug protocol support |
Windows
All the packages here can be installed via various sources, for ease of install the winget package name is listed.
| Package name (winget) | Alternative Source | Required | Build-time-only | Feature | Description | MSRV |
|---|---|---|---|---|---|---|
Git.Git |
X | X | version control | |||
Microsoft.VisualStudio.BuildTools |
X | X | General Windows (C++) build tools | |||
Google.Protobuf |
X | X | communication protocol between server and client(tui) | |||
yt-dlp |
Download some tracks | |||||
ffmpeg |
Post-Processing for yt-dlp |
|||||
| unknown | mpv |
MPV Backend | ||||
| unknown | gst |
Gstreamer Backend | ||||
| unavailable | libopus official site | X | rusty-libopus |
Opus codec support in rusty backend | 1.89.0 |
|
| unavailable | libsixel source | X | cover-viuer-sixel |
Sixel protocol support |
- See MSVC Prerequisites: only the required components for a minimal install
Backends
Default backend: rusty
| Backend | Requirements |
|---|---|
| Symphonia(rusty) | On Linux libasound2-dev is required for building. |
| GStreamer | GStreamer |
| MPV | MPV |
There are extra features for some backends: Note that they are not enabled by default and potentially increase non-rust dependencies.
| Feature | Backend | Description | Extra Dependencies | MSRV |
|---|---|---|---|---|
rusty-simd |
rusty |
Enable SIMD instructions | ||
rusty-soundtouch |
rusty |
Enable soundtouch compilation and use as default speed-modifier |
||
rusty-libopus |
rusty |
Enable libopus support to support opus files |
libopus |
1.89.0 |
Album cover support
To display covers in the terminal itself, feature cover can be enabled.
To only enable specific protocols for cover support, see tui/Cargo.toml#features.
Feature cover-ueberzug will require some ueberzug implementation to be present at runtime.
Files
Configuration
Configuration files can be found in:
| System | Path |
|---|---|
| Linux | ~/.config/termusic/ |
| Mac | ~/Library/Application Support/termusic/ |
| Windows | %APPDATA%\termusic\ |
Files & Folders:
| Paths | Description |
|---|---|
server.toml |
For server configuration |
tui.toml |
For TUI configuration |
themes/ |
Extra Themes to be selected in the Config Editor |
playlist.log |
The Playlist storing the current playlist/queue |
library2.db |
The Indexed Music library |
data.db |
The Podcast Database |
Logs
By default logs can be found in:
| System | Path |
|---|---|
| Linux | /tmp/ |
| Mac | /tmp/(?) |
| Windows | %TMP%\ |
Files:
| Files | Description |
|---|---|
termusic-server.log |
The server logs |
termusic-tui.log |
The TUI logs |
The default log level is WARNING (can be changed via RUST_LOG).
Note that log files are only created on the first log line to be saved.
Official Install Sources
Cargo
From Source
Then install with:
By default, termusic can display album covers in Kitty or iTerm2.
If you need album covers displayed on other terminals, you can enable the sixel protocol or use a ueberzug implementation(x11/xwayland only).
To build all backends and all cover protocols and install them in your home:
Finally, you can run it with:
To build with all backends and all cover protocols without copying binaries elsewhere:
Unofficial Install Sources
The following are ways to install termusic, but may differ in configuration and support.
They are not maintained by the termusic project itself.
Arch Linux
Arch Linux users can install termusic from the official repositories using pacman.
Arch Linux GIT (AUR)
Arch Linux users can install termusic-git from the AUR using pamac.
NetBSD
NetBSD users can install termusic from the official repositories.
Nix/NixOS
Either in the user's environment:
Or declaratively in /etc/nixos/configuration.nix:
{
environment.systemPackagess = with pkgs; [
...
termusic
];
}
TODO
- Better interface to adjust timestamp of lyric.
- Rating and sync support.
- Multiple root and easy switch.
- Save playlists.
- Listen to rss feeds/Podcasts. Need a new layout.
Contributing and issues 🤝🏻
Contributions, bug reports, new features and questions are welcome! 😉 If you have any question or concern, or you want to suggest a new feature, or you want just want to improve termusic, feel free to open an issue or a PR.
Please follow our contributing guidelines
Contributors
hasezoey
Thanks
License
MIT License for main part of code.
GPLv3 for Podcast code under lib/src/podcast/mod.rs. Comes from shellcaster.