Home > Article > Web Front-end > Detailed explanation of audio playback on Phonegap
This time I will bring you a detailed explanation of phonegap audio playback. What are the precautions for the detailed explanation of phonegap audio playback. The following is a practical case, let’s take a look.
The examples are as follows:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Compass Example</title> <script type="text/javascript" charset="UTF-8" src="cordova.js"></script> <script type="text/javascript" charset="UTF-8"> document.addEventListener("deviceready", onDeviceReady, false); function onDeviceReady() { } var my_media=null; var mediaTimer=null; function playAudio(src){ my_media=new Media(src,onSuccess,onError); my_media.play(); if(mediaTimer==null){ mediaTimer=setInterval(function(){ my_media.getCurrentPosition( //成功回调 function(position){ if(position>-1){ setAudioPosition((position/1000)+"sec"); } }, //错误回调 function (e){ console.log("Error getting pos="+e); setAudioPosition("Error: "+e); } ); },1000); } } function pauseAudio(){ if(my_media){ my_media.pause(); } } function stopAudio(){ if(my_media){ my_media.stopAudio(); } clearInterval(mediaTimer); mediaTimer=null; } function onSuccess(){ console.log("playAudio():Audio Success"); } function setAudioPosition(position){ document.getElementById('audio_position').innerHTML=position; } //错误的回调 function onError(error) { alert('code:'+error.code+'\n'+'message:'+error.message+'\n'); } </script> </head> <body> <a href="#" onclick="playAudio('http://example.com/audio.mp3');">Play Audio</a> <a href="#" onclick="pauseAudio();">Pause Playing Audio</a> <a href="#" onclick="stopAudio();">Stop Playing Audio</a> <p id="audio_position"></p> </body> </html>
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website !
Recommended reading:
How to operate url with pushstate and popstate
How to change the current url without refreshing Code
The above is the detailed content of Detailed explanation of audio playback on Phonegap. For more information, please follow other related articles on the PHP Chinese website!