How can I play audio in reverse with the web audio API? I can\'t seem to find anything in the API docs...
if you have an AudioBufferSourceNode element:
audioBufferSourceNode.playbackRate = -1;
-EDIT-
Webkit doesn't have that feature.
Source: https://bugs.webkit.org/show_bug.cgi?id=69725