{"id":20143941,"url":"https://github.com/blackmutzi/alexa-avs-prototype","last_synced_at":"2026-05-06T00:36:25.322Z","repository":{"id":229024946,"uuid":"98213257","full_name":"blackmutzi/alexa-avs-prototype","owner":"blackmutzi","description":"Alexa Voice Service (AVS) client in C++ for raspberry pi or any Linux Distribution ","archived":false,"fork":false,"pushed_at":"2018-01-26T17:46:47.000Z","size":1106,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-13T10:49:53.173Z","etag":null,"topics":["alexa-app","alexa-voice-service","cpp11","doxygen","linux","linux-distribution","prototype","qt-creator","raspberry-pi","testing","travis-ci"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blackmutzi.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}},"created_at":"2017-07-24T16:49:24.000Z","updated_at":"2023-01-11T05:03:03.000Z","dependencies_parsed_at":"2024-03-21T17:44:25.387Z","dependency_job_id":null,"html_url":"https://github.com/blackmutzi/alexa-avs-prototype","commit_stats":null,"previous_names":["blackmutzi/alexa-avs-prototype"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackmutzi%2Falexa-avs-prototype","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackmutzi%2Falexa-avs-prototype/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackmutzi%2Falexa-avs-prototype/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackmutzi%2Falexa-avs-prototype/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blackmutzi","download_url":"https://codeload.github.com/blackmutzi/alexa-avs-prototype/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241587912,"owners_count":19986627,"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":["alexa-app","alexa-voice-service","cpp11","doxygen","linux","linux-distribution","prototype","qt-creator","raspberry-pi","testing","travis-ci"],"created_at":"2024-11-13T22:07:46.580Z","updated_at":"2025-10-25T12:03:37.324Z","avatar_url":"https://github.com/blackmutzi.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![N|Solid](https://github.com/alexa/alexa-avs-sample-app/wiki/assets/alexa-logo-3.png)](https://developer.amazon.com/de/alexa-voice-service)\n# alexa-avs-prototype (c++) [![travis](https://travis-ci.org/blackmutzi/alexa-avs-prototype.svg?branch=master)](https://travis-ci.org/)\nAlexa Voice Service (AVS) client in c++ for raspberry pi or any Linux Distribution.\nProject tested on Gentoo(x86_64) and Raspbian(arm).\n\nThe Prototype is deprecated use alexa-sdk-framewok/alexa-amazon-client, is already released and has more improvment.\n\n# what you need?\n* A Linux Distribution with PulseAudio Support.\n* Amazon Developer Account.\n* Follow the steps [here](https://github.com/alexa/alexa-avs-sample-app/wiki/Raspberry-Pi) to create a security profile.\n* And a WakeWordEngine Client from [here]( https://github.com/alexa/alexa-avs-sample-app/tree/master/samples/wakeWordAgent ).\n\n# download \u0026\u0026 build\n```sh\ngit clone https://github.com/blackmutzi/alexa-avs-prototype\ncd ./alexa-avs-prototype\nqmake ./src/alexa-avs-prototype.pro\nmake\n```\n# avs-configuration\n#### first Step\ngo to config directory and modify ./src/config/config.json file \n```sh\ncd ./alexa-avs-prototype/src/config/\nnano config.json \n\n{\n \"client_id\":\" YOUR_CLIENT_ID_HERE \",\n \"client_secret\":\" YOUR_CLIENT_SECRET_ID_HERE \",\n \"code_grant\":\" YOUR_CODE_GRANT_HERE\",\n \"product_id\":\" YOUR_PRODUCT_NAME_HERE \",\n \"redirect_uri\":\"https://localhost:3000/authresponse\",\n \"refresh_token\":\"AVS-CLIENT_SET_TOKEN_AUTOMATIC\"\n}\n\n```\nand write client_id, client_secret and product_id into the config. ( @see amazon-security-profile )\n#### second Step\nstart now prototype ...\n```sh\n./alexa-avs-prototype\n```\nthe avs-client show you a link, copy it in your Browser. Login Now ..\n\nand get the grant code, save the grant code in the ./alexa-avs-prototype/src/config/config.json file, finish.\n\n# depends installing ( debian )\n```sh\ninstall:\n  - sudo apt-get install libcurl4-gnutls-dev\n  - sudo apt-get install libboost-all-dev\n  - sudo apt-get install gcc-4.9\n  - sudo apt-get install g++-4.9\n  - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 100\n  - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 100\n  - sudo add-apt-repository -y \"deb http://de.archive.ubuntu.com/ubuntu artful main restricted universe multiverse\"\n  - sudo apt-get update -qq\n  - sudo apt-get install libnghttp2-dev\n  - sudo apt-get install libevent-dev\n  - sudo apt-get install libmp3lame-dev\n  - sudo apt-get install libssl-dev\n  - sudo apt-get install libasound2-dev\n ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackmutzi%2Falexa-avs-prototype","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblackmutzi%2Falexa-avs-prototype","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackmutzi%2Falexa-avs-prototype/lists"}