Questions tagged [webkitaudiocontext]

Use webkitaudiocontext for questions related to the Webkit prefixed version of the AudioContext API of the Web Audio API specification

References

73 questions
3
votes
1 answer

OfflineAudioContext and FFT in Safari

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…
Nuthinking
  • 1,211
  • 2
  • 13
  • 32
3
votes
1 answer

Playing around with audioContext

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 …
Phillip Senn
  • 46,771
  • 90
  • 257
  • 373
3
votes
1 answer

HTML5 Audio Buffer getting stuck

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},…
Lars
  • 7,908
  • 11
  • 52
  • 70
3
votes
1 answer

Get audio levels from HTML5 Audio Microphone Stream

On a previous stack overflow question, I found this code: