New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

openai-whisper

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openai-whisper

An app that transcribes audio files using an the free Openai Whisper

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
35
increased by16.67%
Maintainers
1
Weekly downloads
 
Created
Source

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.


visits

Developed by amosayomide05

FAQs

Package last updated on 15 Feb 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc