ryanheise

Results 1670 comments of ryanheise

Maybe this needs to be implemented in audio_session.

My thinking was that the appropriate location for this feature was the audio_session package rather than to implement it as a feature of just_audio. Are you able to achieve what...

The Android implementation was made to mirror iOS's behaviour, although if I can make iOS not automatically skip to the next track, I would agree your feature request sounds like...

That is fair enough. I agree the proposed change would be helpful, or at least it should be configurable. It is not my priority, but if someone reads this and...

Gapless looping was implemented in accordance with official guidance from Apple. It is a feature people want and there is no other way to do it. Your feature request doesn't...

I think we need some careful combination of code to prevent infinite error loops (e.g. loop mode turned on, and every item errors out and skips to the next track),...

Possibly, you can listen to all of these errors on the `playbackEventStream` and count them. Once the count reaches 5, you can call `await stop()` and then `await load()`.

The counter is used on the line after it's set. ```java errorCount++; if (player.hasNext() && currentIndex != null && errorCount Possibly, you can listen to all of these errors on...

This has been on my radar, and there is a relatively simple way of implementing this on Android. What has delayed things is: 1. It is substantially more difficult to...

On the iOS side, some information on volume boost: https://stackoverflow.com/questions/30238287/core-audio-audio-unit-to-boost-signal-level This would depend on #334 .