(Please note: This text is a translation from Japanese.)
I am developing an iOS app using Flutter. Until May 13, 2025, I was able to successfully establish WebRTC connections using STUN servers provided by Google (e.g., stun.l.google.com:19302
) and the signaling server provided by OpenAI (https://api.openai.com/v1/realtime
).
However, since the day changed to May 14th (today), the WebRTC connection has stopped working, even though there have been no changes to the source code.
I am using the flutter_webrtc
package and have configured it to log the onIceConnectionState
. The only information I have at the moment is that the state remains RTCIceConnectionStateChecking
for a short period and then transitions to RTCIceConnectionStateFailed
.
Does anyone know how this can be fixed?
Did you include the input_audio_noise_reduction when creating the session? My WebRTC was no longer functioning today, and removing the input_audio_noise_reduction object solved my issue.
Edit: let me know if this fixed your issue.
1 Like
Our stuff also stopped working today. I think they broke something
1 Like
Thank you for your response.
I was able to connect successfully by removing the input_audio_noise_reduction
parameter during session creation.
I can proceed with my work now. I love you.
Having the same issues.. fix worked… sloppy of openai, since this has happen multiple times in the last year, searching forumposts
@vb @PaulBellow
thought you guys might be interested in reporting this up the food chain possibly
Same problem / solution for me. The what is the alternative for input_noise_reduction
? I need to use far_field
as I have a conversation in an office space I am transcribing. Whats my alternative??