79128723

Date: 2024-10-26 14:23:51
Score: 0.5
Natty:
Report link

Using OpenAI's sdk:

const file = new File([blob], 'myFile.mp3', { type: 'audio/mp3' });

const transcription = await openai.audio.transcriptions.create({
  file: file,
  model: 'whisper-1',
});
console.log('transcription?', transcription);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sahil Rajput