openai-whisper
v1.0.2
Published
An app that transcribes audio files using an the free Openai Whisper
Downloads
190
Readme
Openai Whisper (Unofficial)
This is a Node.js app that transcribes audio files using openai whisper.
Installation
To install the app and its dependencies, run:
npm install openai-whisper
Usage
To transcribe an audio file
const { transcribeAudioFile } = require('openai-whisper');
const filePath = '/path/to/audio/file.mp3';
transcribeAudioFile(filePath)
.then(transcription => {
console.log(transcription);
})
.catch(error => {
console.error(error);
});
License
This project is licensed under the MIT License - see the LICENSE file for details.