Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
whisper-onnx-speech-to-text
Advanced tools
Node.js plugin for speech recognition that works with OpenAI's Whisper models using ONNX.
Transcribe speech to text on node.js using OpenAI's Whisper models converted to cross-platform ONNX format
npm install whisper-onnx-speech-to-text
npx whisper-onnx-speech-to-text download
import { initWhisper } from 'whisper-onnx-speech-to-text';
const whisper = await initWhisper("base.en");
const transcript = await whisper.transcribe("example/sample.wav");
[
{
text: " And so my fellow Americans ask not what your country can do for you, ask what you can do for your country."
chunks: [
{ timestamp: [0, 8.18], text: " And so my fellow Americans ask not what your country can do for you" },
{ timestamp: [8.18, 11.06], text: " ask what you can do for your country." }
]
}
]
The initWhisper()
takes the name of the model and returns an instance of the Whisper class initialized with the chosen model.
The Whisper
class has the following methods:
transcribe(filePath: string, language?: string)
: transcribes speech from wav file.
filePath
: path to wav filelanguage
: target language for recognition. Name format - the full name in English like 'spanish'
disposeModel()
: dispose initialized model.FAQs
Node.js plugin for speech recognition that works with OpenAI's Whisper models using ONNX.
The npm package whisper-onnx-speech-to-text receives a total of 4 weekly downloads. As such, whisper-onnx-speech-to-text popularity was classified as not popular.
We found that whisper-onnx-speech-to-text demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.