Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.