capacitor-plugin-playlist icon indicating copy to clipboard operation
capacitor-plugin-playlist copied to clipboard

A capacitor migration of cordova-plugin-playlist

Results 26 capacitor-plugin-playlist issues
Sort by recently updated
recently updated
newest added

If you create a playlists and try play the last track, either via ID or index, the first track plays. Problem code is in the AVBidirectionalQueuePlayer.swift file, line 187, just...

Not sure if I am doing something fundamentally wrong here, but when I create a single-track playlist like this: ```javascript const player = new RmxAudioPlayer() await player.initialize() await player.setOptions({ verbose:...

I've encountered an issue where value.duration is unreliable on Android devices when buffering. Sometimes it works fine without any problems, but other times it fails to provide the correct duration....

Is it possible to replace a specific track item? Use case: if the user downloads the track, we want to swap the streaming url with the file system url

## Web fix Add the below code to https://github.com/phiamo/capacitor-plugin-playlist/blob/main/src/web.ts#L262 ```js this.audio.addEventListener('seeking', () => { this.updateStatus(RmxAudioStatusMessage.RMXSTATUS_SEEK); }); ``` ## iOS The console logs below indicate that after seekTo was called, only...

``` RmxAudioPlayer.swift:556:66: string interpolation produces a debug description for an optional value; did you mean to make this explicit? print("observe change currentItem: lastTrackId \(self.lastTrackId) playerItem: \(playerItem?.trackId)") ^~~~~~~~~~~~~~~~ RmxAudioPlayer.swift:556:98: string interpolation...