1.0.1 • Published 7 years ago

cordova-plugin-mediapicker v1.0.1

Weekly downloads
11
License
Apache 2.0
Repository
github
Last release
7 years ago

Description

The plugin allows you to select the song from iOS music library and copy it in your app Document directory. Then you can use the cordova media plugin to play the song. Check the demo on how to play a song via media plugin.

Installation

cordova plugin add https://github.com/an-rahulpandey/cordova-plugin-mediapicker.git

Methods & Usage

  • To select the song from music library
window.plugins.mediapicker.getAudio(success,error,multiple,icloud,title);

success - will be called when the user has done selecting the songs. You can get the array of songs list using this

    function success(data)
    {
      console.log(JSON.stringify(data));
    }

error - will be called if there are any errors in exporting or selecting the songs

    function error(e)
    {
      console.log(e);
    }

multiple - a boolean variable which allows you the disable multiple songs selection from the user. You can either pass true or false

icloud - a boolean variable if sets true will show the iCloud songs otherwise not.

title - A String value to set the title of the picker (only works in iOS).

    var multiple = true; // Will allow user to select multiple songs.
    or
    var multiple = false; // Will allow user to select only one song.
    
    var icloud = true; // Will show iCloud songs.
    or
    var icloud =  false; // Will only show songs available locally on device.
  • To delete the song
window.plugins.mediapicker.deleteSongs(success,error,multiple,src);

multiple - To delete multiple files or single file. You can either pass true or false.

    var multiple = true; // Will delete multiple songs.
    or
    var multiple = false; // Will delete only one song.

src - It depends on the value of option. If the option is true, then the src will be an array containing full path to file. Otherwise a string will single full path. The full path should not contain file://localhost or any encoded string like Value%20Space. It should start like this /var/mobile/....../file name.m4a. See demo for more information.

Other Note

The old original version of the plugin is located here https://github.com/an-rahulpandey/ios-audio-picker. In this version we have added the Android Support (thanks to @kukukk). Please test it and repot the issues. If possible please send a pull request for the fixes. Thanks for your support.