In Twilio is it possible to Gather and Record simultaneously? -
in twilio response can record conversation , transcribe it. e.g.
<?xml version="1.0" encoding="utf-8"?> <response> <record transcribe="true" transcribecallback="/transcribe"/> </response> however interested same new speech option gather. e.g.
<?xml version="1.0" encoding="utf-8"?> <response> <gather input="speech" action="/completed"> <say>welcome home!</say> </gather> </response> however, though can transcription in /completed handler speechresult parameter, unable record gathered speech simultaneously. there way can use record along gather ?
twilio developer evangelist here.
you cannot use <record> , <gather> together, have discovered.
the way can think of use record whole call, doing speech recognition parts if generating call rest api. set record parameter true when making call. record entire call.
let me know if helps @ all.
Comments
Post a Comment