Forum Discussion
PrathameshDeshmukh
Jun 24, 2025Copper Contributor
Whisper-1 Model Transcribes English Audio Incorrectly
Hi everyone, I'm currently working with the gpt-4o-realtime-preview model from Azure OpenAI and using the whisper-1 model for audio-to-text transcription. However, I'm encountering a recurring issue...
Kidd_Ip
Jun 25, 2025MVP
In your InputTranscriptionOptions, you can specify the language using the Language property:
InputTranscriptionOptions = new()
{
Model = "whisper-1",
Language = "en"
}
This tells the model to skip language detection and transcribe the audio as English, which should eliminate the issue of it defaulting to Hindi, Urdu, or Chinese.
- PrathameshDeshmukhJun 26, 2025Copper Contributor
Thanks for the reply
I tried this, but this gave me a compile time error as :
Error (active) CS0117 'ConversationInputTranscriptionOptions' does not contain a definition for 'Language'
I am using Azure.AI.OpenAI with Version="2.2.0-beta.4".