I am using OfflineAudioContext to do waveform analysis in the background.
All works fine in Chrome, Firefox and Opera but in Safari I get a very dodgy behaviour.
The waveform should be composed by many samples (329), but in Safari the samples are…
Inspired by this SO answer, I have this code, and it works, but it pops and doesn't sound as smooth as it could.
$('.btn').each(initDraggable);
function initDraggable() {
var param = {}
param.drag = drag
param.stop = stopper
…
I'm using the HTML5 webkitAudioContext to get the realtime levels of a user's microphone using this following code:
var liveSource;
function getLevel(){
var context = new webkitAudioContext();
navigator.webkitGetUserMedia({audio: true},…