Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
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 7 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.