chewie
chewie copied to clipboard
The video player for Flutter with a heart of gold
There is no sound when I use chewie to play the video. This is an ipv6 online live broadcast address, and the video format is m3u8/mpeg. However, it can be...
When seeking using the progress bar, the playback speed is reset to 1. I've changed the code to restore the playback speed after seeking to the new position in the...
I am experiencing an issue with the Chewie package where the controls UI is not displaying properly. Specifically, the time overlaps with the slider, making it difficult to read and...
I need to provide CC/Subtitles in the way of `srt` file, I found it is supported in `VideoPlayerController` ```dart VideoPlayerController.networkUrl(Uri.parse(widget.playList), closedCaptionFile: _loadCaptions()) ``` but It was not coming in the...
Hello! Is anybody having issues with this combination of platform/browser? On Web/Firefox or Android/Chrome it works perfectly fine every time, but for Firefox on Android they rarely work, almost never....
I need to play from beginning (start over) option when entering video. Is there any option like replay?
Hey Chewie Community! I am trying to implement the Chewie Flutter package into my app as a custom widget and I got everything down and made it as customizable as...
I tested my app with impeller on Android to see how it went and there was a bug when playing live .m3u8 video. The sound is playing but no video...
how to implement cache mechanism in Chewie and video player after play the video
``` Future _initController() async { var list = widget.list; var originIndex = widget.originIndex; var teleplayIndex = widget.teleplayIndex; final originPlayList = list?[originIndex]?.linkList; final url = originPlayList?[teleplayIndex].link ?? ''; setState(() { _loading...