{"id":21657848,"url":"https://github.com/blackccpie/deezzy","last_synced_at":"2025-07-17T20:32:16.382Z","repository":{"id":209355973,"uuid":"99150314","full_name":"blackccpie/deezzy","owner":"blackccpie","description":"Lightweight Qml/C++ Deezer Player using Native SDK","archived":false,"fork":false,"pushed_at":"2019-02-07T13:02:28.000Z","size":856,"stargazers_count":35,"open_issues_count":3,"forks_count":3,"subscribers_count":7,"default_branch":"master","last_synced_at":"2023-11-26T22:26:11.696Z","etag":null,"topics":["cmake","cplusplus","deezer","deezer-api","deezer-desktop","docker","music-player","qml","raspberrypi"],"latest_commit_sha":null,"homepage":"","language":"C++","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/blackccpie.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}},"created_at":"2017-08-02T18:47:23.000Z","updated_at":"2023-11-26T22:26:17.046Z","dependencies_parsed_at":"2023-11-26T22:26:15.425Z","dependency_job_id":"c48bf77d-1e98-4c21-b332-49e851dd0a39","html_url":"https://github.com/blackccpie/deezzy","commit_stats":null,"previous_names":["blackccpie/deezzy"],"tags_count":0,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackccpie%2Fdeezzy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackccpie%2Fdeezzy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackccpie%2Fdeezzy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackccpie%2Fdeezzy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blackccpie","download_url":"https://codeload.github.com/blackccpie/deezzy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226304098,"owners_count":17603507,"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":["cmake","cplusplus","deezer","deezer-api","deezer-desktop","docker","music-player","qml","raspberrypi"],"created_at":"2024-11-25T09:28:12.577Z","updated_at":"2024-11-25T09:28:15.454Z","avatar_url":"https://github.com/blackccpie.png","language":"C++","funding_links":[],"categories":["C++"],"sub_categories":[],"readme":"!!! **IMPORTANT** : PLEASE NOTE DEEZER HAS STOPPED SUPPORTING THE DEEZER NATIVE SDK !!!\n\n# deezzy\nLightweight Qml/C++ Deezer Player using _Deezer Native SDK_ (amongst other platorms, it supports ARM Linux).\n\n**deezzy** has no search/playlist management, it's default goal is  to _**play your user's flow radio**_, unless you launch it with a specific deezer album/playlist url.\n\n![Deezzy](http://blackccpie.free.fr/deezzy/deezzy.png)\n\n- UI Layout inspired by : [qml-audio-player](https://github.com/rohitsinghsengar/qml-audio-player)\n- Deezer Native API : [Native SDK](http://developers.deezer.com/sdk/native)\n- Third party JSON library: [JSON for Modern C++](https://github.com/nlohmann/json)\n\n## Platforms support\n\nDeezzy has been developped and initially tested on an Ubuntu 16.04LTS box, and then successfully built and tested on a Raspberry Pi 2 with a Tontec 3.5 inches touchscreen.\nAs far as the _Deezer Native SDK_ and _Qt SDK_ are crossplatforms, deezzy should be easily portable to Windows/MacOS.\n\n![Deezzy-RPi](http://blackccpie.free.fr/deezzy/deezzy-rpi.jpg)\n\n## Building and Running on the Raspberry Pi:\n\n**!! First of all you need a Deezer user account in order to get a valid user id!!!**\n\n1. Download the _Deezer Native SDK_ and clone the _deezzy_ repo (_both should be in the same directory_):\n```shell\n$ wget https://build-repo.deezer.com/native_sdk/deezer-native-sdk-v1.2.10.zip\n$ unzip deezer-native-sdk-v1.2.10.zip\n$ git clone https://github.com/blackccpie/deezzy.git\n```\n\n2. Register your application [here](http://developers.deezer.com) to get your own app id, and authorize it by getting your access token following [this](http://developers.deezer.com/api/oauth) procedure (use following permissions : `basic_access,email,manage_library`). With these infos, update the `private_user.h` header with your `USER_ID`, `USER_ACCESS_TOKEN` and the `USER_CACHE_PATH` of your choice.\n```shell\n$ nano deezzy/src/deezer_wrapper/private/private_user.h\n```\n\n3. make sure you have Qt/Qml and pulseaudio prerequisites installed:\n```shell\n$ sudo apt-get install qt5-qmake qt5-default qtdeclarative5-dev qml-module-qtquick-controls qml-module-qtquick-layouts\n$ sudo apt-get install libpulse-dev\n```\n\n4. run rpi build script (_requires CMake and GCC6_):\n```shell\n$ cd deezzy\n$ sh build_rpi_gcc6.sh\n```\n\n5. [Optional] List your audio devices and select the default one:\n```shell\n$ pacmd list-sinks\n$ pacmd set-default-sink \u003cYOUR_DEFAULT_SINK_NAME\u003e\n```\n\n5. Start **pulseaudio** service\n```shell\n$ pulseaudio -D\n```\n6. Run **deezzy** binary in flow radio mode or given a deezer url\n```shell\n$ ./deezzy\n```\n```shell\n$ ./deezzy dzmedia:///album/659384\n```\n\n## Experimental Raspbian Docker support:\n\nI made some initial tests to run *deezzy* in a docker container, to simplify deployment and dependencies management.\nIn the `docker` directory you will find some usefull scripts to build and run an image containing prebuilt *deezzy*.\nFor now the gui/x11 part is handled, the pulseaudio part is handled too thanks to [this project](https://github.com/TheBiggerGuy/docker-pulseaudio-example), but there is still a strange bug that seems to \"freeze\" track play when a new track is starting.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackccpie%2Fdeezzy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblackccpie%2Fdeezzy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackccpie%2Fdeezzy/lists"}