#Hindi Language Not working with Node.js Live Transcript but working fine with English language
1 messages · Page 1 of 1 (latest)
Thanks for asking your question. Please be sure to reply with as much detail as possible so we can assist you efficiently. Such as:
- Provide the
request_idif you've a question about a transcription response. - The options you used or the api.deepgram.com URL you sent your request to, including parameters.
- Any code snippets you can include.
- Any audio you can include, or if you can't share it here please email it to us at [email protected] and provide a link to this thread.
const deepgram = new Deepgram(process.env.DEEPGRAM_API_KEY);
this.deepgramLive = deepgram.transcription.live({
encoding: 'mulaw',
sample_rate: '8000',
model: 'nova-2-general',
punctuate: true,
interim_results: true,
endpointing: 200,
utterance_end_ms: 1000,
language: 'hi'
});
I am using this code.
What error do you get?