{"id":20719248,"url":"https://github.com/tom-weatherhead/mpd-sacd","last_synced_at":"2025-04-23T14:15:03.423Z","repository":{"id":54274247,"uuid":"482363984","full_name":"tom-weatherhead/mpd-sacd","owner":"tom-weatherhead","description":"A version of the mpd music player daemon that includes support for Super Audio CDs and DVD-Audio discs","archived":false,"fork":false,"pushed_at":"2022-07-29T16:52:24.000Z","size":1960,"stargazers_count":2,"open_issues_count":1,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-23T14:14:54.408Z","etag":null,"topics":["audio","audio-player","dvd","macos","mpd","music"],"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/tom-weatherhead.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2022-04-16T21:21:56.000Z","updated_at":"2024-02-14T06:38:58.000Z","dependencies_parsed_at":"2022-08-13T10:40:36.735Z","dependency_job_id":null,"html_url":"https://github.com/tom-weatherhead/mpd-sacd","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-weatherhead%2Fmpd-sacd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-weatherhead%2Fmpd-sacd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-weatherhead%2Fmpd-sacd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-weatherhead%2Fmpd-sacd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tom-weatherhead","download_url":"https://codeload.github.com/tom-weatherhead/mpd-sacd/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250447979,"owners_count":21432165,"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","audio-player","dvd","macos","mpd","music"],"created_at":"2024-11-17T03:16:22.901Z","updated_at":"2025-04-23T14:15:03.385Z","avatar_url":"https://github.com/tom-weatherhead.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mpd-sacd\n\n[![watchers][watchers-badge-image]][watchers-url]\n[![stars][stars-badge-image]][stars-url]\n[![issues][issues-badge-image]][issues-url]\n[![forks][forks-badge-image]][forks-url]\n[![contributors][contributors-badge-image]][contributors-url]\n[![branches][branches-badge-image]][branches-url]\n[![commits][commits-badge-image]][commits-url]\n[![last commit][last-commit-badge-image]][last-commit-url]\n\nThis project is a fork of [this project](https://sourceforge.net/projects/mpd.sacddecoder.p/files/), which adds support for Super Audio CDs and DVD-Audio discs to the official [mpd music player daemon](https://www.musicpd.org/).\n\nMy modifications to this project are made primarily with macOS in mind.\n\nThe official mpd source code can be found on GitHub [here](https://github.com/MusicPlayerDaemon/MPD).\n\nAnd [here](https://computingforgeeks.com/install-configure-mpd-ncmpcpp-macos/) is a useful guide to setting up mpd and the ncmpcpp player on macOS.\n\n## To build or rebuild mpd-sacd\n\nInstall dependencies via Homebrew:\n\n```sh\nbrew install mpd\nbrew install meson\nbrew install ninja\n```\n\nConfigure:\n\n```sh\ncd mpd-sacd\nrm -rf output\nmeson . output/release --buildtype=debugoptimized -Db_ndebug=true\nmeson configure output/release -Dsysconfdir='etc/mpd-sacd'\n```\n\nMPD will then look for mpd.conf in /usr/local/etc/mpd-sacd/\n\nBuild:\n\n```sh\nninja -C output/release\n```\n\nThe executable mpd can then be found in output/release/\n\nTo install:\n\n```sh\nninja -C output/release install\n```\n\n- To launch mpd as a daemon: $ mpd\n- To kill the running instance of mpd: $ mpd --kill\n- To update the mpd database: $ mpc update\n- To launch the rudimentary player: $ ncmpcpp\n\n[Here](https://mpd.readthedocs.io/en/stable/user.html#compiling-from-source) is the original documentation about compiling from the source.\n\n## License\n[GPL-2.0](https://opensource.org/licenses/gpl-2.0.php)\n\n[watchers-badge-image]: https://badgen.net/github/watchers/tom-weatherhead/mpd-sacd\n[watchers-url]: https://github.com/tom-weatherhead/mpd-sacd/watchers\n[stars-badge-image]: https://badgen.net/github/stars/tom-weatherhead/mpd-sacd\n[stars-url]: https://github.com/tom-weatherhead/mpd-sacd/stargazers\n[issues-badge-image]: https://badgen.net/github/issues/tom-weatherhead/mpd-sacd\n[issues-url]: https://github.com/tom-weatherhead/mpd-sacd/issues\n[forks-badge-image]: https://badgen.net/github/forks/tom-weatherhead/mpd-sacd\n[forks-url]: https://github.com/tom-weatherhead/mpd-sacd/network/members\n[contributors-badge-image]: https://badgen.net/github/contributors/tom-weatherhead/mpd-sacd\n[contributors-url]: https://github.com/tom-weatherhead/mpd-sacd/graphs/contributors\n[branches-badge-image]: https://badgen.net/github/branches/tom-weatherhead/mpd-sacd\n[branches-url]: https://github.com/tom-weatherhead/mpd-sacd/branches\n[commits-badge-image]: https://badgen.net/github/commits/tom-weatherhead/mpd-sacd\n[commits-url]: https://github.com/tom-weatherhead/mpd-sacd/commits/master\n[last-commit-badge-image]: https://badgen.net/github/last-commit/tom-weatherhead/mpd-sacd\n[last-commit-url]: https://github.com/tom-weatherhead/mpd-sacd\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftom-weatherhead%2Fmpd-sacd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftom-weatherhead%2Fmpd-sacd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftom-weatherhead%2Fmpd-sacd/lists"}