Is it possible to make real-time voice recognition during conference in Twilio? I do it for single call but I need do it for conference. Thank you for your help
Asked
Active
Viewed 498 times
1
-
Imagine how confusing your transcript would be. I guess you would have to record the individual calls instead of the conference. Theres a beta feature which allows you to receive a webhook when a participant speaks or stops speaking. If you were good you could couple that with the REST API to redirect callers who are start speaking to new TwiML which starts recording and stop when they do, but I dont know if you can actually start recording after you have set up a call – miknik Oct 06 '17 at 22:13
-
@miknik If you redirected speakers away when they started to talk, no-one in the conference call would ever hear anything! Sadly, this is just a feature that doesn't exist within Twilio. – philnash Oct 09 '17 at 10:37
-
Please see: [Why is "Is it possible to..." a poorly worded question?](https://softwareengineering.meta.stackexchange.com/questions/7273/why-is-is-it-possible-to-a-poorly-worded-question) – EJoshuaS - Stand with Ukraine Oct 12 '17 at 16:49
-
Please also see: [How do I avoid misusing tags?](https://meta.stackoverflow.com/questions/354427/how-do-i-avoid-misusing-tags) – EJoshuaS - Stand with Ukraine Oct 12 '17 at 16:50
-
This works in voximplant, but not in twilio – Nikolay Shmyrev Oct 14 '17 at 13:41
-
I think it is now, although I can't figure out how. Check [this](https://www.youtube.com/watch?v=Am74WU1zENA&feature=youtu.be&t=727) – absin Jan 14 '19 at 07:55
1 Answers
2
Twilio developer evangelist here.
I'm afraid there is no live speech recognition in Twilio conferences.

philnash
- 70,667
- 10
- 60
- 88
-
I'm wondering it could works if I buy two numbers on twilio and set on them voice real-time voice recognition and them connect audio of these two calls? The second question is it is possible to connect two calls? Thank you for your answer – ninjaj Oct 09 '17 at 13:21
-
You can't connect two calls and have them doing voice recognition at the same time, no. Currently live voice recognition is done by connecting a single call leg with TwiML that says [`
`](http://twilio.com/docs/api/twiml/gather). There's no way to connect two calls to both another caller and some alternative TwiML at the same time. – philnash Oct 09 '17 at 16:28 -
How do you explain [this](https://www.youtube.com/watch?v=Am74WU1zENA&feature=youtu.be&t=727) – absin Jan 14 '19 at 07:55
-
-
is this still not possible? what about doing that with a taskRouter call? – AlfredoDaAs Dec 31 '20 at 00:04
-
@AlfredoDaAs Now available for all voice calls is [Twilio Media Streams](https://www.twilio.com/media-streams), which gives you a real time feed of the audio in a call. With this, you can put your conference call through a speech to text API to get speech recognition. – philnash Dec 31 '20 at 00:17