{"id":21094452,"url":"https://github.com/d99kris/namp","last_synced_at":"2025-12-27T12:11:23.371Z","repository":{"id":39859442,"uuid":"43372521","full_name":"d99kris/namp","owner":"d99kris","description":"Terminal-based audio player for Linux and macOS","archived":false,"fork":false,"pushed_at":"2024-09-28T05:26:49.000Z","size":977,"stargazers_count":63,"open_issues_count":1,"forks_count":5,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-05-08T23:35:25.669Z","etag":null,"topics":["audio-player","console","linux","macos","mp3-player","ncurses","terminal-based","tui"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/d99kris.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-09-29T14:26:42.000Z","updated_at":"2025-04-29T17:50:13.000Z","dependencies_parsed_at":"2023-11-26T10:26:45.165Z","dependency_job_id":"ce07d3e6-c259-4683-b6a3-525decae0982","html_url":"https://github.com/d99kris/namp","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/d99kris/namp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d99kris%2Fnamp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d99kris%2Fnamp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d99kris%2Fnamp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d99kris%2Fnamp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/d99kris","download_url":"https://codeload.github.com/d99kris/namp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d99kris%2Fnamp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261335693,"owners_count":23143566,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-player","console","linux","macos","mp3-player","ncurses","terminal-based","tui"],"created_at":"2024-11-19T22:17:33.518Z","updated_at":"2025-12-27T12:11:23.345Z","avatar_url":"https://github.com/d99kris.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"namp\n====\n\n| **Linux** | **Mac** |\n|-----------|---------|\n| [![Linux](https://github.com/d99kris/namp/workflows/Linux/badge.svg)](https://github.com/d99kris/namp/actions?query=workflow%3ALinux) | [![macOS](https://github.com/d99kris/namp/workflows/macOS/badge.svg)](https://github.com/d99kris/namp/actions?query=workflow%3AmacOS) |\n\nnamp is a terminal-based MP3 player for Linux and macOS, implemented in C++ / Qt.\nFor systems which do not have Qt available, a lite version of namp\n[namp-lite](https://github.com/d99kris/namp-lite) (Linux only) is available.\n\n![screenshot](/res/namp-screenshot.png)\n\n\nUsage\n=====\nUsage:\n\n    namp OPTION\n    namp PATH...\n\nCommand-line Options:\n\n    -h, --help        display this help and exit\n    -s, --setup       setup last.fm scrobbling account\n    -v, --version     output version information and exit\n    PATH              file or directory to add to playlist\n\nCommand-line Examples:\n\n    namp ~/Music      play all files in ~/Music\n    namp hello.mp3    play hello.mp3\n\nInteractive Commands:\n\n    z                 previous track\n    x                 play\n    c                 pause\n    v                 stop\n    b                 next track\n    q,ESC             quit\n    /,j               find\n    up,+              volume up\n    down,-            volume down\n    left              skip/fast backward\n    right             skip/fast forward\n    home              playlist top\n    end               playlist end\n    pgup              playlist previous page\n    pgdn              playlist next page\n    ENTER             play selected track\n    TAB               toggle main window / playlist focus\n    e                 external tag editor\n    s                 toggle shuffle on/off\n\nSupported Platforms\n===================\nnamp is primarily developed and tested on macOS, but basic functionality should\nwork on Linux as well. Current version has been tested on:\n\n- macOS Sequoia 15.4\n- Ubuntu 24.04 LTS\n\nLinux\n=====\n\n**Dependencies Ubuntu 20.04**\n\n    sudo apt install libncursesw5-dev libtag1-dev qt5-default qt5-qmake qtmultimedia5-dev libqt5multimedia5-plugins ubuntu-restricted-extras\n\n**Dependencies Ubuntu 22.04 onwards**\n\n    sudo apt install libncursesw5-dev libtag1-dev qt6-base-dev qt6-multimedia-dev gstreamer1.0-pulseaudio ubuntu-restricted-extras\n\n**Source**\n\n    git clone https://github.com/d99kris/namp \u0026\u0026 cd namp\n\n**Build**\n\n    mkdir -p build \u0026\u0026 cd build \u0026\u0026 qmake .. \u0026\u0026 make -s\n\n**Install**\n\n    sudo make -s install\n\nmacOS\n=====\n\n**Dependencies**\n\n    brew install ncurses taglib gnu-sed\n    brew install qt\n\n**Source**\n\n    git clone https://github.com/d99kris/namp \u0026\u0026 cd namp\n\n**Build**\n\n    mkdir -p build \u0026\u0026 cd build \u0026\u0026 qmake .. \u0026\u0026 make -s\n\n**Install**\n\n    make -s install\n\nExternal Tools\n==============\nUsing external tag editor requires [idntag](https://github.com/d99kris/idntag)\nto be installed on the system.\n\nLicense\n=======\nnamp is distributed under GPLv2 license. See LICENSE file.\n\nKeywords\n========\ncommand line, console-based, linux, macos, mp3 player, music player, ncurses,\nterminal-based.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd99kris%2Fnamp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fd99kris%2Fnamp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd99kris%2Fnamp/lists"}