AudioPlayerManager
AudioPlayerManager copied to clipboard
⚠️ No longer maintained ⚠️ Small Swift Wrapper and Queue-Manager around AVPlayer which let you play MediaPlayer items and stream songs from URLs.
hi, `AudioPlayerManager.shared.play(urlStrings: urls, at: 0)` method actually blocks the UI, how about doing it in background? actually using this snippet this can be achieved for now, but I think it...
I was looking for a decently solid library to start streaming MP3s from and your wrapper around AVPlayer has been awesome and saved a lot of time so far. I've...
Hi! When i want to update the volume when the device is lock, the slide freeze... do you know why ? 
there is no way to set the volume or get access to avplayer.
I am using the framework for playing URL with index. whenever there is a change of track Main thread completely freezes. [AudioPlayerManager].restartCurrentTrack()[397]: restartCurrentTrack is debug console print at the time...
hi, after adding songs with `AudioPlayerManager.shared.play(urlStrings: urls, at: index) ` how can i play a song at an index without passing urls again ?
My app plays video and audio. I start fullscreen videos like this: ``` func startFullscreenVideo(videoURL:URL) { let player = AVPlayer(url: videoURL) let controller = AVPlayerViewController() controller.player = player present(controller, animated:...
Hi, thanks for the great job is there any way that I can add headers to the url(s) so I can satisfy some security protocols of the server ?
is it possible to cache remote files ? perhaps using this project [CachingPlayerItem](https://github.com/neekeetab/CachingPlayerItem)