{"id":40791929,"url":"https://github.com/dhulihan/grump","last_synced_at":"2026-01-21T20:09:16.622Z","repository":{"id":43050428,"uuid":"252831359","full_name":"dhulihan/grump","owner":"dhulihan","description":"A CLI audio player written in go.","archived":false,"fork":false,"pushed_at":"2024-10-29T22:34:23.000Z","size":216,"stargazers_count":80,"open_issues_count":5,"forks_count":11,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-11-30T07:24:09.550Z","etag":null,"topics":["audio","cli","cli-audio-player","mp3","mp3-player","music","music-player","terminal"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dhulihan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-04-03T20:14:35.000Z","updated_at":"2024-11-12T16:54:55.000Z","dependencies_parsed_at":"2022-07-08T05:49:13.112Z","dependency_job_id":null,"html_url":"https://github.com/dhulihan/grump","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/dhulihan/grump","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhulihan%2Fgrump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhulihan%2Fgrump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhulihan%2Fgrump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhulihan%2Fgrump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dhulihan","download_url":"https://codeload.github.com/dhulihan/grump/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhulihan%2Fgrump/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28641300,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T18:04:35.752Z","status":"ssl_error","status_checked_at":"2026-01-21T18:03:55.054Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["audio","cli","cli-audio-player","mp3","mp3-player","music","music-player","terminal"],"created_at":"2026-01-21T20:09:16.005Z","updated_at":"2026-01-21T20:09:16.616Z","avatar_url":"https://github.com/dhulihan.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# grump\n\n![](screenshot.png)\n\n```\nGreat but\nReally\nUgly\nMedia\nPlayer\n```\n\nA very minimal CLI audio player.\n\n## Features\n\n* cross-platform\n* ID3 tag scanning\n* Supports\n\t* FLAC\n\t* MP3\n\t* OGG/Vorbis\n\t* WAV\n* Tag Editor\n* Quick Ratings\n* Playback Effects (speed up/down)\n\n## Install\n\n### Linux\n\n```sh\nsudo apt install libasound2-dev build-essential\ngo get github.com/dhulihan/grump\n```\n\n### Mac OSX\n\n```sh\nbrew tap dhulihan/grump\nbrew install grump\n```\n\nAlternatively, you can install the latest (possibly unreleased) version:\n\n```sh\ngo get github.com/dhulihan/grump\n```\n\n* You can also download pre-build binaries on the [releases](https://github.com/dhulihan/grump/releases) page.\n\n## Usage\n\n```\ngrump path/to/some/audio/files\n```\n\n## Keyboard Shortcuts\n\n```\n┌───────┬───────────────────────────────────────────────────┐\n│space  │pause/unpause                                      │\n├───────┼───────────────────────────────────────────────────┤\n│escape │stop track                                         │\n├───────┼───────────────────────────────────────────────────┤\n│d      │describe currently playing track                   │\n├───────┼───────────────────────────────────────────────────┤\n│e      │edit currently playing track                       │\n├───────┼───────────────────────────────────────────────────┤\n│delete │delete currently playing track (with prompt)       │\n├───────┼───────────────────────────────────────────────────┤\n│l      │view logs page                                     │\n├───────┼───────────────────────────────────────────────────┤\n│left   │seek forward (does not work on flac)               │\n├───────┼───────────────────────────────────────────────────┤\n│right  │seek backward  (does not work on flac)             │\n├───────┼───────────────────────────────────────────────────┤\n│]      │play next track                                    │\n├───────┼───────────────────────────────────────────────────┤\n│[      │play previous track                                │\n├───────┼───────────────────────────────────────────────────┤\n│=      │volume up                                          │\n├───────┼───────────────────────────────────────────────────┤\n│-      │volume down                                        │\n├───────┼───────────────────────────────────────────────────┤\n│+      │speed up                                           │\n├───────┼───────────────────────────────────────────────────┤\n│_      │speed down                                         │\n├───────┼───────────────────────────────────────────────────┤\n│q      │quit                                               │\n├───────┼───────────────────────────────────────────────────┤\n│0      │set rating of currently playing track to 🌑        │\n├───────┼───────────────────────────────────────────────────┤\n│1      │set rating of currently playing track to 🌕        │\n├───────┼───────────────────────────────────────────────────┤\n│2      │set rating of currently playing track to 🌕🌕      │\n├───────┼───────────────────────────────────────────────────┤\n│3      │set rating of currently playing track to 🌕🌕🌕    │\n├───────┼───────────────────────────────────────────────────┤\n│4      │set rating of currently playing track to 🌕🌕🌕🌕  │\n├───────┼───────────────────────────────────────────────────┤\n│5      │set rating of currently playing track to 🌕🌕🌕🌕🌕│\n├───────┼───────────────────────────────────────────────────┤\n```\n\n## Configuration\n\ngrump will load a `~/.grump.yaml` file if present.\n\n```yaml\n# log level. options: trace, debug, info, warn, error\nlog_level: info\n\n# if true, write application logs to a file\nlog_to_file: false\n\n# write logs to this file, if enabled\nlog_file: grump.log\n```\n\n## Development\n\n### Building\n\n```sh\n# build for linux (linux host)\n./scripts/build-linux.sh\n\n# build for linux (non-linux host)\ndocker-compose run build-linux\n\n# build for darwin (darwin host)\n./scripts/build-darwin.sh\n```\n\n### Releasing\n\n```sh\nVERSION=0.0.0\ngit tag $VERSION\ngit push origin $VERSION\ngoreleaser release --rm-dist\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdhulihan%2Fgrump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdhulihan%2Fgrump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdhulihan%2Fgrump/lists"}