Audio Recordings Out of Sync and Poor Call Quality...
# support
g
I noticed that the audio recordings are not synchronized – the timestamps of the voicebot and the agent do not match at all and sometimes overlap when I connect my phone number. I also experience major quality differences: via web call and chat everything works perfectly, but when using the phone number the quality is very poor. Could you please help me understand what the issue might be and what options we have to resolve this? For context: I am using a Twilio phone number and I am located in Austria. https://cdn.discordapp.com/attachments/1415314491834499193/1415314492702855178/image.png?ex=68c2c1d6&is=68c17056&hm=5a04686e1b757be5f7455b41ffc95512e247e4cc01c6843288fdfac651d89df0&
v
Suggestion: Try updating your squad or call configuration to use a different
transportConfigurations
provider (e.g., test with a non-Twilio provider if available) to see if the audio sync and quality improve. Here’s a sample config snippet:
Copy code
json
"transportConfigurations": [
  {
    "provider": "twilio",
    "timeout": 60,
    "record": false
  }
]
If possible, switch
"provider"
to another supported option and compare results. This helps isolate whether the issue is specific to Twilio's telephony routing in Austria. [See more in the API reference](https://docs.vapi.ai/api-reference/calls/create?explorer=true) Source: - [Create Call API Reference](https://docs.vapi.ai/api-reference/calls/create?explorer=true)
g
Copy code
{
  "assistantId": "{{ $json.agentTwoID }}",
  "assistantOverrides": {
    "variableValues": {
      "current_time": "{{$now.format('yyyy-MM-dd T a')}}",
      "day": "{{ $now.format('cccc') }}"
    },
    "firstMessage": "Hallo, ich bin Eva von Stia Immo. Unser Gespräch wird zu Qualitätszwecken aufgezeichnet. Wie darf ich Ihnen helfen!"
  },
  "recordingConfig": {
    "separateAudioTracks": true,
    "format": "wav",
    "sampleRate": 16000
  },
  "transportConfigurations": [
    {
      "provider": "twilio",
      "timeout": 60,
      "record": false
    }
  ]
}
https://cdn.discordapp.com/attachments/1415314491834499193/1415333993007681596/image.png?ex=68c2d3ff&is=68c1827f&hm=9d7f38f8d41d80e83825291e11098c1b7d03291b5e78dc0a749cb9eea46ffff7&
It seems like Vapi doesn’t properly wait for the bot’s initial start message, and in parallel it already records the caller’s speech on top of it... I tried your sugesstion ... https://cdn.discordapp.com/attachments/1415314491834499193/1415334250915565588/image.png?ex=68c2d43d&is=68c182bd&hm=b990c4c32f15234b33321a137c2625466deb631e31f8faffdfeb3f5c04f6b754&
Two main problems: The web assistant works well, but the phone assistant behaves differently (slower, lower quality, missing words/answers). On phone calls, voice recordings overlap (bot + caller). Parts of both voices are missing → recordings are unusable, also in the trancript, see screenshots Even though interruptions work as expected, the customer explicitly requires proper recordings, which are currently not possible. Webcall = good relults. Phone call = unreliable and unusable.
c
Hi, Can you please provide a call id for both web call and phone call so we can compare the two? This information will help us find the differences in configuration
g
webcall CallID: 724f3f23-cb5a-438f-98b1-d8fbd3776d14
phonecall CallID: 6c8e2a92-85ff-4843-8bea-5548fd68db1a
thank u, if you need further details pleae let me know, Gerald
Hi Kyle, do you have any News ....?
c
We analyzed both configurations and because there is higher latency in the phone call than the web call, you need to optimize your assistant for phone calls by switching the LLM to gpt-4o-mini and elevenlabs flash_v2_5 for a quick latency improvement. Please try making those changes then let us know if the phone calls need more improvement
g
c
Thank you for the call ids. We will review the contents and get back to you with an update
g
do you have any News? rgds Gerald
c
With current updates to the platform, please check if these updates have resolved your issue. Let us know if you are still experiencing this issue
2 Views