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.
webaudio-peaks
Advanced tools
Small library to extract peaks from an array of audio samples or an AudioBuffer from the WebAudio API.
Small library to extract peaks from an array of audio samples or a webaudio AudioBuffer.
npm install webaudio-peaks --save
var extractPeaks = require("webaudio-peaks");
var audioCtx = new (window.AudioContext || window.webkitAudioContext)();
//decode an ArrayBuffer into an AudioBuffer
audioCtx.decodeAudioData(audioData, function (decodedData) {
//calculate peaks from an AudioBuffer
var peaks = extractPeaks(decodedData, 10000, true);
});
function to extract peaks from a TypedArray, or AudioBuffer
Params
TypedArray|AudioBuffer
- A source of audio samples.number
- Number of samples used to calculate a single peak.boolean
- Combine all channels into one array of peaks or not.number
- Sample to begin at. The offset is inclusive.number
- Sample to end at. The offset is exclusive.(8|16|32)
- Resolution of calculated peaks.Returns: object
{
length: `number`; //Number of calculated peaks,
//Computed peak data, length == #channels or 1 if isMono == true
//Each entry of type `Int{bits}Array`
data: `Array`;
bits: `(8|16|32)`; //Resolution of calculated peaks.
}
FAQs
Small library to extract peaks from an array of audio samples or an AudioBuffer from the WebAudio API.
The npm package webaudio-peaks receives a total of 476 weekly downloads. As such, webaudio-peaks popularity was classified as not popular.
We found that webaudio-peaks 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.