Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
High performance WAV decoder and encoder. The decoder is up to 750x faster than the 'wav-decoder' npm module.
In addition, in contrast to 'wav-decoder' the result is returned directly instead of with a promise.
This module combines the functionality of 'wav-decoder' and 'wav-encoder'.
let fs = require('fs');
let wav = require('node-wav');
let buffer = fs.readFileSync('file.wav');
let result = wav.decode(buffer);
console.log(result.sampleRate);
console.log(result.channelData); // array of Float32Arrays
wav.encode(result.channelData, { sampleRate: result.sampleRate, float: true, bitDepth: 32 });
Data is always returned as Float32Arrays. While reading and writing 64-bit float WAV files is supported, data is truncated to 32-bit floats.
This module assumes a little endian CPU, which is true for pretty much every processor these days (in particular Intel and ARM).
FAQs
High performance WAV file decoder and encoder
The npm package node-wav receives a total of 151,658 weekly downloads. As such, node-wav popularity was classified as popular.
We found that node-wav 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.