
Security News
High Salaries No Longer Enough to Attract Top Cybersecurity Talent
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
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 4 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
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.