arielfaur / ionic-audio

An audio player for Ionic 3 and Angular 4. Works with HTML 5 audio or native audio using Cordova Media plugin.
http://arielfaur.github.io/ionic-audio/2.0/index.html
MIT License
321 stars 163 forks source link

on iOS lock screen, I can't play the audio #205

Open akio46 opened 6 years ago

akio46 commented 6 years ago

first audio is started to be played, few mins later, lock screen appears.

after first audio is finished, the second audio isn't played.

        const selectedTrack = this.audioProvider.tracks[index].id;
        this.audioProvider.play(selectedTrack);

index is just 1 because it's second track.

this is the log for first track.

Loading track https://d1as0hz72d196v.cloudfront.net/production/audio/1._ESS_5_day_Meditation_Reinvented_NEW_FINAL.mp3 2018-08-12 16:46:18.027071+0800 SOS Method[25961:11184456] Playing track https://d1as0hz72d196v.cloudfront.net/production/audio/1._ESS_5_day_Meditation_Reinvented_NEW_FINAL.mp3

this is the log for second track

Loading track https://d1as0hz72d196v.cloudfront.net/production/audio/01_CALM_and_STRENGTH_5_min_FINAL.mp3

As you can see, I don't see Playing track log for second track. How can I solve this? thanks