HTML5 rendering on mobile

I am trying to use several visualization libraries for the mobile application that I am creating (with a telephone connection).

Libraries: 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 on mobile devices. Is there a way to integrate them into the application? Or support for some of the technologies that they use are now supported. I tested only on iOS.

Thanks.

+7
javascript html5 ios html5-audio cordova
source share
2 answers

The problem at the moment is that the web audio API is not supported on mobile devices other than iOS 6 +

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

This API is the basis for creating an audio visualizer.

If you work with Phonegap, you can make part of the web application and part of the visualizer native and use ir as the Phonegap plugin. It is justified, it depends on how much% of the application is the visualizer.

+5
source share

You can use Intel XDK for this. It allows you to create mobile applications using jQuery / JS / HTML5. Assuming you have all the code, its port should not be too complicated.

NTN.

+2
source share

All Articles