ryanheise
ryanheise
Thanks for the request! This is the intended default behaviour, but it is configurable. I have updated the documentation as follows: ```dart /// Recursively shuffles the children of the currently...
It's very helpful to learn about your use case for potential future API redesigns. But in the meantime, you can still implement the desired behaviour within the current design. Shuffles...
Hi @smkhalsa , were you able to figure out how to achieve the desired behaviour via a custom `ShuffleOrder` implementation? You can probably try something like this: ```dart class SpotifyShuffleOrder...
Ah, that seems reasonable, the initial index will be what is passed into `setAudioSource` and otherwise default to zero. I suppose that this behaviour could be changed so that if...
Hi @BartusZak That link didn't specifically talk about HLS, so would you be able to point me to something HLS specific? Is it a feature of another HLS player that...
One concern I have is if no existing audio player library supports this, then it may not be feasible. just_audio is built upon lower level audio player APIs and those...
Any update on this?
@djsjr if it's not the same feature, I'd suggest you open a separate feature request. The present issue is about headers.
Maybe related: https://github.com/flutter/flutter/issues/62006 However, your case might be different and it might be that the platform channels are working but then the error occurs when disposing the player. If that...
A better solution may be in `_setPlatformActive` in `lib/just_audio.dart`: ```dart if (oldPlatformFuture != null) { final oldPlatform = await oldPlatformFuture; if (oldPlatform != _idlePlatform) { await _disposePlatform(oldPlatform); } } //...