Hummingbird is a modern music player written in Rust using GPUI, designed to be performant and lightweight while maximizing extensibility and maintaining a high design standard.
- Fully native application with no web component
- FLAC, MP3, OGG Vorbis, Opus, AAC and WAV playback
- Linux, macOS and Windows support
- SQLite-backed library
- Theming with hot reload
- Scrobbling (last.fm) support
- Fuzzy-find album search (press Ctrl + F)
- Desktop integration
- Playlists
- WASM Extension support:
- Codecs
- Scrobble services
- Metadata services
- Advanced search
- ReplayGain
- Lyrics support
- Improved library management
Binaries for these platforms are officially available for 64-bit ARM and Intel architectures. See the latest release for downloads.
Fedora users can install Hummingbird using the william341/hummingbird COPR:
sudo dnf copr enable william341/hummingbird
sudo dnf install hummingbirdArch users can install Hummingbird using the hummingbird-player AUR package:
paru -S hummingbird-playerA flake is available for NixOS users. Work towards upstreaming Hummingbird into nixpkgs is currently ongoing.
The latest commit is built using Github Actions and uploaded to the latest tag automatically. Windows installers aren't available for unstable builds.
For more detailed instructions, see the Building documentation.
# install relevant devel packages for xcb-common, x11, wayland, openssl, and pulseaudio if on Linux
git clone https://github.com/143mailliw/hummingbird
cd hummingbird
# last.fm api keys must be set in the environment for scrobbling to work
# these can be obtained from https://www.last.fm/api/account/create
# you can also set these in a .env file in the root of the project
#
# Hummingbird will still build without these keys, but scrobbling will be disabled
export LASTFM_API_KEY="your key"
export LASTFM_API_SECRET="your secret"
# debug mode will result in noticable slowdown in some cases
cargo build --releaseSee CONTRIBUTING.md.
