Skip to content

Instantly share code, notes, and snippets.

View beefchimi's full-sized avatar
🤠
yeeeeehaw!

Curtis Dulmage beefchimi

🤠
yeeeeehaw!
View GitHub Profile
@beefchimi
beefchimi / webaudio-example-4.js
Last active October 22, 2017 23:47
Swappable audio snippet
let swappedNode = null;
draggable.on('drag:start', () => {
SoundFx.Synth.play('up');
});
draggable.on('swappable:swapped', ({swappedElement}) => {
swappedNode = swappedElement;
SoundFx.Synth.play('swap');
});
@beefchimi
beefchimi / SoundToggle.js
Last active October 22, 2017 23:47
SoundToggle class
function disabledAudio() {
return null;
}
export default class SoundToggle {
constructor(activator, sounds) {
this.activator = activator;
this.sounds = sounds;
this.keys = Object.keys(sounds);
this.backups = {};
@beefchimi
beefchimi / distortion-curve.js
Created October 22, 2017 20:48
Function for distorting an audio input
export default function distortionCurve(amount = 0) {
const sampleRate = 44100;
const curve = new Float32Array(sampleRate);
const deg = Math.PI / 180;
for (let i = 0; i < sampleRate; ++i) {
const x = (i * 2 / sampleRate) - 1;
curve[i] = (
(
(3 + amount) * x * 20 * deg
@beefchimi
beefchimi / reverse-buffer.js
Created October 22, 2017 22:03
Reverse an audioBuffer
export default function reverseBuffer(buffer, context) {
const reverse = context.createBuffer(
buffer.numberOfChannels,
buffer.length,
buffer.sampleRate
);
for (let channels = 0; channels < buffer.numberOfChannels; channels++) {
const dest = reverse.getChannelData(channels);
const src = buffer.getChannelData(channels);
@beefchimi
beefchimi / webaudio-example-5.js
Last active November 6, 2017 21:00
Reverse conditional for setGain method
_setGain(reverse, duration) {
this.gainNode.gain.setValueAtTime(1, this.context.currentTime);
if (reverse) {
this.gainNode.gain.exponentialRampToValueAtTime(0.5, this.context.currentTime + duration);
}
}
@beefchimi
beefchimi / tremolo.js
Created October 22, 2017 22:12
Tremolo method
const defaultOptions = {
speed: 10,
duration: 1,
volume: {
min: 0.1,
max: 1,
},
};
tremolo(options = {}) {
@beefchimi
beefchimi / vibrato.js
Last active November 6, 2017 20:50
Vibrato method
const defaultLFO = {
type: 'sine',
freq: 12,
volume: 40,
};
// Uses same `duration` as "source" oscillator
vibrato(duration, options = {}) {
const config = Object.assign(defaultLFO, options);
@beefchimi
beefchimi / Loop.js
Last active November 6, 2017 20:52
Loop class
import fetchAudioBuffer from './helpers/fetch-audio-buffer';
const zeroGain = 0.001;
const maxGain = 0.6;
const durationRamp = {
up: 0.2,
down: 0.3,
};
@beefchimi
beefchimi / AccessibleFeature.js
Created October 22, 2017 22:20
Example of using Loop.js in the Accessible section
import SoundFx from '../../SoundFx';
export default function AccessibleFeature() {
const target = document.getElementById('AccessibleFeature');
target.addEventListener('mouseenter', () => {
SoundFx.Accessible.play();
});
target.addEventListener('mouseleave', () => {
@beefchimi
beefchimi / webaudio-example-6.js
Last active October 22, 2017 23:49
Speed method
speed(speed = 1) {
// Ramp up faster when increasing speed, slower if decreasing
const duration = (speed > 1) ? durationRamp.up : durationRamp.down;
for (let i = 0; i < this.trackCount; i++) {
this.sources[`source${i}`].playbackRate.exponentialRampToValueAtTime(
speed,
this.context.currentTime + duration
);
}