If I had an audio element, I could use something like
audioElement.currentTime=5;
But how do I set the time for an audio buffer source in the Web Audio API? Is there anything like:
var source=context.createBufferSource();
source.currentTime=5;
To clarify, I want to play 5 seconds into the audio buffer's audio.