- Joined
- Nov 23, 2025
- Messages
- 7
- Reaction score
- 5
Hi everyone,
I need to perform real-time audio transcription on live 3CX calls.
I've analyzed the Call Control API, and here is my current understanding:
Thanks!
I need to perform real-time audio transcription on live 3CX calls.
I've analyzed the Call Control API, and here is my current understanding:
- GET /stream Endpoint: Only works if the call is anchored at a Route Point (e.g., an AI answering bot). It seems useless for transcribing calls once they are routed to an actual human agent because the stream is lost.
- Silent Auditor Pattern: Build a SIP Bot, register it as an extension, and use the Call Control API to BargeIn on active calls to capture the RTP stream.
- WebRTC Emulation: Reverse-engineer the Web Client protocol to "listen" via the browser API (seems fragile).
Thanks!