ryanheise
ryanheise
@afkcodes I think that's covered in [the documentation](https://pub.dev/documentation/just_audio/latest/just_audio/LockCachingAudioSource/LockCachingAudioSource.html) so if it's not, I would suggest opening a new issue for the documentation request.
just_audio uses Google's ExoPlayer library on Android. The only option I'm aware of in ExoPlayer that can improve performance is audio offload mode, requested in #522 , but according to...
> Unfortunately I have the problem with the screen on so I don't think that would solve it. It is still worth a try. > I seem to have this...
> **Describe alternatives you've considered** > Actually, there are no alternatives now. Maybe this? https://github.com/ryanheise/audio_service/issues/467#issuecomment-786366534
The reason that the "Describe alternatives you've considered" section is there is to just think about other ways you could be solving your problem other than requiring the plugin to...
You might consider looking at the proxy server in the code and doing something similar to that outside the plugin. This would give you gapless playback in memory without adding...
You can use an ephemeral port as done in `_ProxyHttpServer`.
Now that could be a really useful feature, I agree. I would be happy to accept a PR. There's one other feature that should eventually go into the proxy code...
> I'm using your proxy suggestion for now, and it works really well - thanks for that. The one problem is that the server is accessible with a web browser,...
I have just created a new branch called `proxy_improvements` which provides a new `StreamAudioSource` that allows streaming data dynamically and supports range requests. To use it, you simply create a...