ryanheise
ryanheise
That's a good option. ExoPlayer also provides an API to disable certificate checking. If that's useful as a fallback option, I could add this API to just_audio.
That option would only work provided ExoPlayer is loading the audio directly rather than through just_audio's proxy (which will happen if you're sending headers in the request). Speaking of the...
Looking further, it was not actually an API of ExoPlayer but a separate API that turns of Android's certificate checking for the whole app. This also means you could manage...
Thanks for the suggestion @defsub . @IrosTheBeggar does that work for you? If someone wants to share an example URL that fails, I can try testing some of the various...
This feature is currently not implemented. Android probably has more information available than iOS in this respect, but I'd need to investigate the iOS APIs further. Until the feature is...
At least on the Android side, you can seek to the edge of a live stream by calling `player.seek(null)` (this is undocumented until it works for iOS).
While looking into #127 I considered exposing Android specific APIs to allow you to configure the buffering parameters since iOS and Android have very different APIs here. With it, you...
Oh, I see. I'm not sure how best to go about the UI issue, but let me know if you need any more data exposed from the underlying ExoPlayer APIs...
What you could do perhaps is look for an open source app that does something similar based on ExoPlayer, and if it is using additional APIs that I haven't exposed...
From memory, returning to live is now implemented in both Android and iOS by passing a null argument to seek. Although let me know if it's not working.