Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vocal room command on ofmeet page and auto-connect #101

Open
ClaudeStabile opened this issue May 15, 2020 · 2 comments
Open

Vocal room command on ofmeet page and auto-connect #101

ClaudeStabile opened this issue May 15, 2020 · 2 comments

Comments

@ClaudeStabile
Copy link

Hello,

This is an enhancement i used to have since a while with Free-Solutions. I am now suggesting to add this feature in ofmeet plugin. The core advantage is no typing and say same word, you get connected !
You can experiment the system at https://call.free-solutions.org with chrome or android
Slice of code i am using
_

<script> function startDictation() { if (window.hasOwnProperty('webkitSpeechRecognition')) { var recognition = new webkitSpeechRecognition(); recognition.continuous = false; recognition.interimResults = false; recognition.lang = "fr_FR"; recognition.start(); recognition.onresult = function(e) { document.getElementById('transcript').value = e.results[0][0].transcript; var resultat = document.getElementById('transcript').value; window.location.replace("https://call.free-solutions.org/" + resultat + "?lang=fr"); recognition.stop(); }; recognition.onerror = function(e) { recognition.stop(); } } } </script>

_

Nice to have : In the meeting settings with OF console pls add

  • Language setup for the API
  • image for Micro button and associated TEXT / Help

Hope to catch up interest for this addon.

screenshot16

@deleolajide
Copy link
Member

deleolajide commented May 17, 2020 via email

@deleolajide
Copy link
Member

Implemented with - igniterealtime/openfire-pade-plugin#37

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants