Relative Content

Tag Archive for flutterflutter-dependenciesvideo-playerflutter-video-player

Flutter VideoPlayer doesn’t support download url from Firebase Cloud Storage?

final MyFile file; //url is the downloadurl from Firebase Cloud Storage _videoPlayerController = VideoPlayerController.networkUrl(Uri.parse(file.url)); _initVideoPlayerController = _videoPlayerController.initialize(); … return FutureBuilder( future: _initVideoPlayerController, builder: (context, snap) { return AspectRatio( aspectRatio: _videoPlayerController.value.aspectRatio, child: VideoPlayer(_videoPlayerController), ); }); … Error: flutter: PlatformException(VideoError, Failed to load video: Cannot Open, null, null) The download Url from Firebase Cloud Storage ins’t accepted […]