Phone call audio API or HTML5 audio tag?

which is better to use to play mp3 files in iphone application Phonegap Media API or html5 audio tag ?

+4
source share
2 answers

The HTML5 tag will work with Phonegap, but your results will vary. Functions such as audio.load () (assuming you use javascript to control your HTML5 audio element) will not work. I would recommend using the Phonegap API.

+1
source

The regular HTML5 tag will work in the Cordova project, even if you download music from the file system, if and only if you have a content security policy. You can create a content security policy on the Internet using this tool or study this excellent tutorial. Please note that the default project in Cordoba has CSP, but the current Phonegap project does not by default.

0
source

Source: https://habr.com/ru/post/1481210/


All Articles