1.0.2 • Published 1 year ago

openai-whisper v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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.

Developed by amosayomide05

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago