chewie icon indicating copy to clipboard operation
chewie copied to clipboard

when I play a url with "m3u8" on iPhone device,it a living url, when I start ,the center button alaways is replay button, the function is ok ,just the icon is alaways replay button, how to resolve this problem!

Open yuxingmin opened this issue 2 months ago • 1 comments

Future initializePlayer() async { videoController = VideoPlayerController.networkUrl(Uri.parse(widget.url)); await Future.wait([videoController.initialize()]); chewieController = ChewieController( videoPlayerController: videoController, aspectRatio: widget.aspectRatio, autoPlay: widget.autoPlay, looping: widget.looping, isLive: true, showOptions: false, // useRootNavigator: false, // controlsSafeAreaMinimum: EdgeInsets.fromLTRB(0, 0, 0, 20), allowPlaybackSpeedChanging: false, allowMuting: false, //声音 // placeholder: placeHolder, materialProgressColors: progressColors, customControls: const MaterialControls( showPlayButton: true, )); setState(() {}); }

yuxingmin avatar May 31 '24 06:05 yuxingmin