ryanheise
ryanheise
The next major release will offer a playlist API on the player instance itself, including a clear method. Until then, if you set a `ConcatenatingAudioSource` as the main audio source...
@bianca8 , please consult the examples in this repo if you would like to see how to use `ConcatenatingAudioSource`. I would like to keep this issue focused on the given...
As soon as I get it working.
I have a PR available at #1423 . To test, it is necessary to comment/uncomment as indicated in the `pubspec.yaml` files to use the new platform interface with the new...
Oh, that's interesting. My assumption was that using HTTP within the same device would be safe from snooping, and I guess that's true on an unrooted phone. After checking the...
There is also `HttpServer.bindSecure`. I think the issue here will be that iOS doesn't work well with self-signed server certificates: https://stackoverflow.com/questions/38217551/how-can-i-use-an-avplayer-with-https-and-self-signed-server-certificates For apps where security is a relevant concern, I...
Thanks for this. Now first, you may (or may not) be aware that there is an existing PR #1246 by @aletorrado also using HLS.js, and so I would want to...
@aletorrado , I think as long as the app developer can choose between self hosting and CDN, it should be fine. So I rather than bundle a copy of hls.js...
@aletorrado sorry for the delay (had an emergency to deal with). > Ok, just to check: Do you want me to integrate my Hls.js loader while preserving the integration into...
> Describe alternatives you've considered > 1. Manual native code modification: Developers must create custom Android code to suppress ExoPlayer logging (not ideal for cross-platform Flutter apps) Is that actually...