Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to play sounds in your phonegap application

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 646
    Comment on it

    Cordova provides a plugin to play sounds in your mobile application. It can record an audio file and also play back audio file on the device.

    Installing the plugin:
     

    1. cordova plugin add cordova-plugin-media

    It has a Media constructor. You can check by showing it on device ready.
     

    1. document.addEventListener("deviceready", onDeviceReady, false);
    2. function onDeviceReady() {
    3. console.log(Media);
    4. }
    1. var media = new Media(src, mediaSuccess, [mediaError], [mediaStatus]);

    where:
    src : It is a path for audio file.
    mediaSuccess : optional. It is a callback function that is executed when a media file completes its current action.
    mediaError : optional. It is executed when there is some error.
    mediaStatus : optional. It is executed when there is need to change status of audio file.

    mediaStatus constants:

    * Media.MEDIA_NONE = 0;
    * Media.MEDIA_STARTING = 1;
    * Media.MEDIA_RUNNING = 2;
    * Media.MEDIA_PAUSED = 3;
    * Media.MEDIA_STOPPED = 4;

    There are some methods which can be used for audio files:
    media.play: It is used to start audio file.
    media.pause: It is used to pause playback audio file.
    media.stop: It is used to stop audio file.
    media.setVolume: It is used to set the audio file volume.

    Example:

    1. // Play audio file
    2. function playAudio(url) {
    3. // Play the audio file at url
    4. var my_media = new Media(url,
    5. // success callback
    6. function() {
    7. console.log("playAudio():Audio Success");
    8. },
    9. // error callback
    10. function(err) {
    11. console.log("playAudio():Audio Error: "+err);
    12. });
    13.  
    14. // Play audio
    15. my_media.play();
    16.  
    17. // Mute volume after 2 seconds
    18. setTimeout(function() {
    19. my_media.setVolume('0.0');
    20. }, 2000);
    21.  
    22. // Set volume to 1.0 after 5 seconds
    23. setTimeout(function() {
    24. my_media.setVolume('1.0');
    25. }, 5000);
    26. }
    27.  
    28.  

     

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: