When I use the open AI whisper model on Hindi audio, it returns the transcription in English instead of Hindi.
How do I get the output in Hindi itself? Is there a setting that can be changed?
mel = whisper.log_mel_spectrogram(audio).to(model.device)
options = whisper.DecodingOptions(language = 'hi')
result = whisper.decode(model, mel, options)
print(result.text)
Result: