Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
audio-param-transform
Advanced tools
Apply multiple transforms with custom functions to Web Audio API AudioParams.
Apply multiple transforms with custom functions to Web Audio API AudioParams.
$ npm install audio-param-transform
var extendTransform = require('audio-param-transform')
Pass in the AudioParam you wish to add a transform()
method to and the relevant AudioContext.
Returns the extended param.
Returns an instance of TransformAudioParam applied to the target AudioParam which works the same as the base AudioParam, except applying the specified func(a, b)
to all values, ramps and curves.
If you do not specify a function, the specified value for this transform will override all previous transforms (if any).
Creating a transpose param.
var extendTransform = require('audio-param-transform')
var audioContext = new AudioContext()
var oscillator = audioContext.createOscillator()
oscillator.connect(audioContext.destination)
// create a base transform in case we want to automate the two independently
var baseFrequencyParam = oscillator.frequency.transform()
// now add the transpose transform
var transposeParam = oscillator.frequency.transform(transpose)
// modulate the transpose up an octave then down again each second
var on = false
setInterval(function(){
if (on){ // ramp up
transposeParam.linearRampToValueAtTime(12, audioContext.currentTime + 0.3)
} else { // and back again
transposeParam.linearRampToValueAtTime(0, audioContext.currentTime + 0.3)
}
on = !on
}, 1000)
function transpose(a,b){
return a * Math.pow(2, (b || 0) / 12)
}
FAQs
Apply multiple transforms with custom functions to Web Audio API AudioParams.
We found that audio-param-transform 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.