Question

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.

Was it helpful?

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.

OTHER TIPS

You might be able to use the Intel XDK for this. It allows you to make mobile applications using jQuery/JS/HTML5. Assuming you have all the code, it shouldn't be too difficult to port.

HTH.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top