Ios issue, full response not received. https://api.openai.com/v1/audio/transcriptions

ios issue, full response not received.
only single word is transcripted in IOS. Also its working well on android.
/audio/transcriptions

const res = await axios.post(
“audio/transcriptions”,
formData,
{
headers: {
“Content-Type”: “multipart/form-data”,
Authorization: Bearer ${VITE_OPENAI_API_KEY},
},
}
);

I found the issue that when I am recording the audio with media-recorder on safari its encoding is not supported by openAI api.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.