Skip to content

Instantly share code, notes, and snippets.

View somnathbm's full-sized avatar
🎃
Drinking code!

Somnath Mukherjee somnathbm

🎃
Drinking code!
View GitHub Profile
@TurplePurtle
TurplePurtle / sourceFromFile.js
Created October 27, 2012 21:36
Load sound from local file for Web Audio API
// Audio Buffer Source
var fileInput = $("#audio-file");
bufferSource.gain.value = 1;
bufferSource.loop = true;
bufferSource.connect(oscillatorGain);
fileInput.addEventListener("change", function() {
var reader = new FileReader();
reader.onload = function(ev) {
context.decodeAudioData(ev.target.result, function(buffer) {