Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@pr0gramm/fluester
Advanced tools
[ˈflʏstɐ]
Node.js bindings for OpenAI's Whisper. Hard-fork of whisper-node.
make
npm install @pr0gramm/fluester
npx @pr0gramm/fluester download
import whisper from "@pr0gramm/fluester";
const transcript = await whisper("example/sample.wav");
console.log(transcript); // output: [ {start,end,speech} ]
[
{
"start": "00:00:14.310", // time stamp begin
"end": "00:00:16.480", // time stamp end
"speech": "howdy" // transcription
}
]
import whisper from "@pr0gramm/fluester";
const filePath = "example/sample.wav", // required
const options = {
modelName: "tiny.en", // default
modelPath: "/custom/path/to/model.bin", // use model in a custom directory
whisperOptions: {
gen_file_txt: false, // outputs .txt file
gen_file_subtitle: false, // outputs .srt file
gen_file_vtt: false, // outputs .vtt file
timestamp_size: 10, // amount of dialogue per timestamp pair
word_timestamps: true // timestamp for every word
}
}
const transcript = await whisper(filePath, options);
FAQs
Node.js bindings for OpenAI's Whisper. Optimized for CPU.
The npm package @pr0gramm/fluester receives a total of 1,216 weekly downloads. As such, @pr0gramm/fluester popularity was classified as popular.
We found that @pr0gramm/fluester demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.