{"id":21081762,"url":"https://github.com/openvoiceos/ovos-audio-transformer-plugin-ggwave","last_synced_at":"2025-10-24T11:58:52.542Z","repository":{"id":194540049,"uuid":"691271723","full_name":"OpenVoiceOS/ovos-audio-transformer-plugin-ggwave","owner":"OpenVoiceOS","description":"data over sound plugin","archived":false,"fork":false,"pushed_at":"2025-06-16T22:49:18.000Z","size":139,"stargazers_count":2,"open_issues_count":4,"forks_count":3,"subscribers_count":3,"default_branch":"dev","last_synced_at":"2025-10-24T11:58:52.027Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://openvoiceos.github.io/ovos-audio-transformer-plugin-ggwave/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OpenVoiceOS.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null},"funding":{"github":["OpenVoiceOS"],"patreon":"openvoiceos","liberapay":"OpenVoiceOS-Foundation","custom":"https://paypal.me/openvoiceos"}},"created_at":"2023-09-13T20:56:58.000Z","updated_at":"2025-06-16T22:49:21.000Z","dependencies_parsed_at":"2024-09-11T07:36:42.446Z","dependency_job_id":"be5f674b-0428-49df-b540-8d3ca76e401e","html_url":"https://github.com/OpenVoiceOS/ovos-audio-transformer-plugin-ggwave","commit_stats":null,"previous_names":["openvoiceos/ovos-audio-transformer-plugin-ggwave"],"tags_count":33,"template":false,"template_full_name":null,"purl":"pkg:github/OpenVoiceOS/ovos-audio-transformer-plugin-ggwave","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenVoiceOS%2Fovos-audio-transformer-plugin-ggwave","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenVoiceOS%2Fovos-audio-transformer-plugin-ggwave/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenVoiceOS%2Fovos-audio-transformer-plugin-ggwave/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenVoiceOS%2Fovos-audio-transformer-plugin-ggwave/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OpenVoiceOS","download_url":"https://codeload.github.com/OpenVoiceOS/ovos-audio-transformer-plugin-ggwave/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenVoiceOS%2Fovos-audio-transformer-plugin-ggwave/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280791362,"owners_count":26391692,"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","status":"online","status_checked_at":"2025-10-24T02:00:06.418Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-19T20:10:51.410Z","updated_at":"2025-10-24T11:58:52.525Z","avatar_url":"https://github.com/OpenVoiceOS.png","language":"Python","funding_links":["https://github.com/sponsors/OpenVoiceOS","https://patreon.com/openvoiceos","https://liberapay.com/OpenVoiceOS-Foundation","https://paypal.me/openvoiceos"],"categories":[],"sub_categories":[],"readme":"# GGWave audio plugin\n\nplugin for https://github.com/ggerganov/ggwave\n\nEmit audio QR codes to be handled by this plugin\n\nInteract with this plugin from your [browser](https://openvoiceos.github.io/ovos-audio-transformer-plugin-ggwave/), including WiFi setup\n\nThe companion skill [OpenVoiceOS/ovos-skill-ggwave](https://github.com/OpenVoiceOS/ovos-skill-ggwave) allows you to enable/disable this plugin by voice\n\nSkill stores support installing skills via GGWave:\n- [OVOS-skills-store](https://openvoiceos.github.io/OVOS-skills-store)\n- [OVOS-Hatchery-skills](https://ovoshatchery.github.io/OVOS-Hatchery-skills)\n  \n```javascript\n\"skills\": {\n    \"installer\": {\n      \"allow_pip\": true,\n      \"allow_alphas\": true,\n      \"break_system_packages\": false\n    }\n}\n```\n\u003e **TIP** Allow ovos-core to install python packages, otherwise the install commands from this plugin will error out\n\n## Install\n\n`pip install ovos-audio-transformer-plugin-ggwave`\n\n\u003e ggwave [fails to install on python 3.11](https://github.com/ggerganov/ggwave/issues/89), you can use the wheel from here https://whl.smartgic.io/ , plugin install should then work\n\n## Listener Plugin\n\nTo have this plugin loaded by dinkum-listener, enable it in mycroft.conf\n\n\u003e **WARNING** currently not recommended, see [bug report in dinkum-listener](https://github.com/OpenVoiceOS/ovos-dinkum-listener/issues/98)\n\n```javascript\n\"listener\": {\n    \"audio_transformers\": {\n        \"ovos-audio-transformer-plugin-ggwave\": {\n            \"start_enabled\": true\n        }\n    }\n}\n```\n\n## Standalone\n\nYou can also run the plugin in standalone mode, in it's own process or docker container\n\nLaunch with the console entrypoint\n```bash\novos-ggwave-listener\n```\n\n## Valid Audio Data\n\nthis repo provides a test interface via [github pages](https://openvoiceos.github.io/ovos-audio-transformer-plugin-ggwave/)\n\nyou can also test your own payloads via https://ggwave-js.ggerganov.com/ \n\n### Wifi setup\n\nemit a message setting the wifi SSID\n`SSID:123456`\n\nafter the SSID is set, emit a message setting the wifi password\n`PSWD:123456`\n\nif password is empty then it is assumed to be an open network\n`PSWD:`\n\nonce password is received a bus message is sent for [ovos-PHAL-plugin-network-manager](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-network-manager) to handle\n\n### Install a github skill\n\ninstall a skill from a github url\n\n`GHS:https://github.com/OpenVoiceOS/skill-ovos-icanhazdadjokes`\n\n### Install a python package\n\ninstall any package from pypi\n\n`PIP:skill-wikipedia-for-humans`\n\n### Utterance\n\ninject an utterance in the messagebus like if the user spoke it to the microphone\n\n`UTT:hello cruel world`\n\n### Speak\n\nmake a OVOS device speak\n\n`SPEAK:hello world`\n\n### Bus\n\ninject a simple message in the messagebus\n\n`BUS:recognizer_loop:sleep`\n\n### Json\n\ninject a serialized message in the messagebus\n\n`JSON:{\"type\": \"speak\", \"data\": {\"utterance\": \"hello\"}, \"context\": {}}`\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenvoiceos%2Fovos-audio-transformer-plugin-ggwave","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenvoiceos%2Fovos-audio-transformer-plugin-ggwave","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenvoiceos%2Fovos-audio-transformer-plugin-ggwave/lists"}