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-slot-param
Advanced tools
Link and transform schedule-based observables and connect to AudioParams (Web Audio API).
Link and transform schedule-based observables and connect to AudioParams (Web Audio API).
Params are instances of observ-node-array/single.
var Param = require('audio-slot-param')
var apply = require('audio-slot-param/apply')
var context = {
audio: new AudioContext(), // Web Audio
nodes: {
lfo: require('audio-slot/modulators/lfo')
}
}
var frequency = Param(context, 440)
var osc = audioContext.createOscillator()
var unapply = apply(context, osc.frequency, frequency)
osc.connect(context.audio.destination)
osc.start()
// set the value explicitly:
frequency.set(220)
// modulate with an LFO
frequency.set({
node: 'lfo',
mode: 'add',
amp: 50,
value: 220,
rate: 8, // hz
trigger: false
})
var Transform = require('audio-slot-param/transform')
var pitch = Param(context, 0)
var octave = Param(context, 0)
var frequency = Transform(context, [ 440, // base freq
{ param: obs.octave, transform: transformOctave },
{ param: obs.noteOffset, transform: transformNote }
])
apply(context, osc.frequency, frequency)
octave.set(-1)
pitch.set(4)
osc.frequency.value //= 277.1826309768721
// or as above, we can specify a modulator instead of explicit value:
pitch.set({
node: 'lfo',
mode: 'add',
amp: 1,
value: 4,
rate: 8, // hz
trigger: false
})
function transformOctave(baseFrequency, value){
return baseFrequency * Math.pow(2, value)
}
function transformNote(baseFrequency, value){
return baseFrequency * Math.pow(2, value / 12)
}
Creates a placeholder param that can be swapped for a real param later.
var Proxy = require('audio-slot-param/proxy')
var param = Proxy(context, 440)
apply(context, osc.frequency, param)
// then later on swap:
var target = LFO(context)
param.set(target)
FAQs
Link and transform schedule-based observables and connect to AudioParams (Web Audio API).
The npm package audio-slot-param receives a total of 23 weekly downloads. As such, audio-slot-param popularity was classified as not popular.
We found that audio-slot-param 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.