HTML5 visualisations in mobile

cordova, html, html5-audio, ios, javascript

Solution

The problem as for right now is that the Web Audio API is not supported in mobile other than iOS 6+

Check this: http://caniuse.com/#feat=audio-api

This API is the base for building an audio visualizer.

If you are working with Phonegap you could make part of the application web and the visualizer part native and use ir as a Phonegap plugin. It is justified to do this depending how much % of the application the visualizer is.

Problem

I am trying to make use of a few visualization libraries for a mobile app I am making (with phonegap). The libraries are: https://github.com/jsantell/dancer.js and http://www.michaelbromley.co.uk/blog/42/audio-visualization-with-web-audio-canvas-and-the-soundcloud-api However, they do not seem to work in mobile. Is there a way you could integrate these into an app? Or is the support for some of the tech these make use of now supported yet. I have only tested on iOS. Thanks.

Original source