Forum Discussion
kugelblytz
Jan 06, 2024Copper Contributor
Language Detection ACS Call Automation
Hey there, I am trying to build a multilingual voice bot using ACS and a web service. As users might speak different languages I am looking for a way to either translate the STT or at least detect...
Martin-Apps4Rent
Aug 26, 2025Iron Contributor
You can handle multilingual voice bots by streaming the ACS call audio to the Azure Speech SDK, which supports auto language detection and translation, then feeding the detected language or translated text into your backend and using Speech SDK TTS to reply in the right language through ACS; ACS itself only manages calls, while Speech SDK provides STT/translation, and if latency is critical, prefer .NET SDK since it’s faster and more optimized than Python.