{"id":18854783,"url":"https://github.com/manolo/addon-voice-engine","last_synced_at":"2026-01-27T06:02:23.460Z","repository":{"id":261052565,"uuid":"883109467","full_name":"manolo/addon-voice-engine","owner":"manolo","description":"A Vaadin Addon that allows usage of SpeechRecognition and SpeechSynthesis JS API","archived":false,"fork":false,"pushed_at":"2024-11-15T16:24:11.000Z","size":149,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-11T17:51:13.163Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/manolo.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":"2024-11-04T11:50:11.000Z","updated_at":"2024-12-17T20:47:20.000Z","dependencies_parsed_at":"2024-12-30T18:38:14.747Z","dependency_job_id":"94377b56-1c01-442c-9870-6693e6c0a1d4","html_url":"https://github.com/manolo/addon-voice-engine","commit_stats":null,"previous_names":["manolo/addon-voice-engine"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/manolo/addon-voice-engine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manolo%2Faddon-voice-engine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manolo%2Faddon-voice-engine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manolo%2Faddon-voice-engine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manolo%2Faddon-voice-engine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manolo","download_url":"https://codeload.github.com/manolo/addon-voice-engine/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manolo%2Faddon-voice-engine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28805337,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T05:43:52.625Z","status":"ssl_error","status_checked_at":"2026-01-27T05:43:48.957Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-08T03:51:20.107Z","updated_at":"2026-01-27T06:02:18.452Z","avatar_url":"https://github.com/manolo.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Voice Addon\n\nAn addon for voice recognition and speach text\n\n## Example\n\n\n```java\n@Route(\"\")\npublic class VoiceEngineView extends Div {\n\n    public VoiceEngineView() {\n        setSizeFull();\n\n        Button clearButton = new Button(LumoIcon.CROSS.create());\n        VoiceEngine voiceEngine = new VoiceEngine().setButtons(MICROPHONE, PLAY, LANG, VOICE);\n        voiceEngine.add(clearButton);\n        TextArea textArea = new TextArea();\n\n        textArea.setSizeFull();\n        add(new VerticalLayout(voiceEngine, textArea));\n\n        clearButton.addClickListener(e -\u003e textArea.clear());\n        voiceEngine.addStartListener(e -\u003e textArea.clear());\n        textArea.addValueChangeListener(e -\u003e voiceEngine.setSpeech(e.getValue()));\n\n        voiceEngine.addEndListener(e -\u003e {\n            if (voiceEngine.getRecorded() != null) {\n                textArea.setValue(voiceEngine.getRecorded());\n            }\n            if (!textArea.getValue().isEmpty()) {\n                voiceEngine.setSpeech(voiceEngine.getRecorded());\n            }\n        });\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanolo%2Faddon-voice-engine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanolo%2Faddon-voice-engine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanolo%2Faddon-voice-engine/lists"}