rurico / flutter_video_compress

Generate a new file by compressed video, and provide metadata. Get video thumbnail from a video path, supports JPEG/GIF. To reduce app size not using FFmpeg in IOS.
MIT License
188 stars 73 forks source link

How to play the video repeatedly #70

Open Tumbler0809 opened 4 years ago

Tumbler0809 commented 4 years ago

controller = VideoPlayerController.network( widget.url) ..initialize().then(() { // Ensure the first frame is shown after the video is initialized, even before the play button has been pressed. setState(() {});

}); _controller.setLooping(false)

Tumbler0809 commented 4 years ago

When the video finishes playing, I need to restore the video state to the initial state. When the button is clicked, the video starts playing from the beginning.