Web Audio API: Setting playbackRate Correctly
Join the DZone community and get the full member experience.
Join For FreeI was working on a little demo showing the manipulation of playback rates of audio clips. The Audio tag failed miserably. On Safari and Chrome (both for Mac) the audio tag couldn't playback the audio any slower than half speed.
For what I was working on, this meant trying out the Web Audio API. I stole some code that allowed for playback, got it working, then tried to manipulate the playbackRate for the clip. But no joy, no Chipmunks singing for me.
I looked up a couple of things, and many of them pointed at this statement from the HTML5Rocks Web Audio API FAQ:
Q: HOW CAN I CHANGE THE PITCH OF A SOUND USING THE WEB AUDIO API?
A: Change the playbackRate on the source node.
I tried and I tried for an hour to get this to work using this syntax:
source.playbackRate = 2.0;
Turns out you have to set it as:
source.playbackRate.value = 2.0;
Hopefully, this spares you some time.
Source: http://www.terrenceryan.com/blog/post.cfm/web-audio-api-setting-playbackrate
Opinions expressed by DZone contributors are their own.
Trending
-
Effective Java Collection Framework: Best Practices and Tips
-
Writing a Vector Database in a Week in Rust
-
Auditing Tools for Kubernetes
-
Unlocking the Power of AIOps: Enhancing DevOps With Intelligent Automation for Optimized IT Operations
Comments