ryanheise
ryanheise
The alternatives would be to not use a `ConcatenatingAudioSource`. You could just define your own list of items: ```dart final List items = ...; ``` And to play one, do...
@xxjonesriderxx unfortunately you can't rely on `pause` to happen quickly enough to definitely prevent a bit of sound coming out from the next playlist item. Maybe that is sufficient for...
Hi @zeyus , thanks for sharing your implementation. It should come in handy to anyone else who is trying to solve the same use case while waiting for a feature...
Note to self: this could be used: https://github.com/google/shaka-player/
Good find, @liri2006 . Internally it is using [hls.js](https://github.com/video-dev/hls.js/) instead of shaka and shaka also includes DASH support, but your link could be a useful guideline on how to integrate...
I agree it would be useful to not only seek back in a livestream, but also seek forward to return to the tip of the livestream (the latter has already...
There are also some buffering options that can be passed to the constructor of `AudioPlayer` but on iOS I don't see any option for configuring the backwards buffer. For these...
I'm not sure if the file idea will work. I would still suggesting to search how native iOS developers have solved this problem in the past and then try to...
I'm a bit confused by your bug report since you talk about HTTP status codes and yet your example uses the `file://` scheme.
`file://` URIs are not supported on web due to the security model.