i’m working on a HTML5 audio player, and i’m stuck at making audio visualizations… I was googling and i only found visualizations that are supported by firefox or chrome. So now i’m here asking: is it possible to create audio visualizations with HTML5 and Javascript for all newest browsers?
If the anwser is yes: how?
If the anwser is no: what can you recomend then?
i’m working on a HTML5 audio player, and i’m stuck at making audio visualizations…
Share
either canvas or webgl for the rendering. As you’ve discovered, the web audio API is
only partially supported in Chrome, Firefox and Safari.
This bloke, who appears to post quite frequently on HTML5 audio, has worked around the lack of support for the web audio API by pre-processing his audio data and saving it as JavaScript. Depending on your requirements, this may be an option.