flick-video-player icon indicating copy to clipboard operation
flick-video-player copied to clipboard

Results 79 flick-video-player issues
Sort by recently updated
recently updated
newest added

it doesn't supports hls , dash videos and Drm support

I've started to play around 8 videos of 1 minute each, one after the other. With each round, I popped the screen, and the dispose() was indeed triggered. However, after...

version list: Flutter 3.16.9 flick_video_player: ^0.7.0 video_player: ^2.8.2 demo: ```dart FlickVideoPlayer( flickManager: flickManager, flickVideoWithControls: FlickVideoWithControls( videoFit: BoxFit.contain, controls: SafeArea( child: FlickPortraitControls( iconSize: 22, fontSize: 14, progressBarSettings: FlickProgressBarSettings( padding: const EdgeInsets.symmetric(...

Need to remove fullscreen icon because my app supports portrait mode only

if the video is more than 60 min it's shown in minute format. Suppose a video length is 80 min. then it displays 80 min. it is not converting in...

Enhancement: Introduce onMute and onUnmute Methods for Player State Detection 🎵 This pull request introduces two new methods, onMute and onUnmute, enhancing our video player's functionality. These methods enable dynamic...

After seeking to a particular duration, the video stucks in the same place. ``` @override void initState() { super.initState(); flickManager = FlickManager( videoPlayerController: VideoPlayerController.network( "https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4?raw=true"), ); flickManager.flickVideoManager!.addListener(_videoPlayingListener); flickManager.flickVideoManager!.videoPlayerController!.play(); } _videoPlayingListener()...

Explanation: When utilizing the seekbar functionality, it appears that there is an issue with the synchronization of subtitles. After adjusting the seekbar, the timing of subtitles becomes misaligned or disrupted....

subtitle_wrapper_package: ^2.2.0 I have used above package to show subtitle: ` Widget updateVideo(){ // return flickVideoPlayer!; return FlickVideoPlayer( flickManager: flickManager!, flickVideoWithControls: SubtitleWrapper( videoPlayerController: flickManager!.flickVideoManager!.videoPlayerController!, subtitleController: subtitleController!, subtitleStyle: SubtitleStyle( textColor: Colors.white,...