Questions tagged [flutter-video-player]

For questions related to playing a video with the Flutter open source framework by Google.

247 questions
2
votes
1 answer

Flutter video_player is taking too much time to load video from firbase

Hi I am creating a video player which lists all videos from Firebase storage and play it. I used cache_video_player plugin to play video. This is similar to video_player plugin with cache service. This plugin takes too much time to initialize and…
user7160306
  • 49
  • 11
2
votes
1 answer

Do we need to manually delete the recorded cached video file using ImagePicker flutter plugin?

I am using the ImagePicker (https://pub.dev/packages/image_picker) plugin to record videos and I noticed the recorded videos are stored in app's cache folder (example:…
Manas
  • 3,060
  • 4
  • 27
  • 55
2
votes
0 answers

Flutter Video_Player: Enhance position precision

I'm currently using the video_player to analyse the videos with precision. Unfortunately, I can't seem to be able to enhance the precision of the different "position" getter of the VideoPlayer instance. The top is 500ms interval between each…
Colin Lazarini
  • 754
  • 4
  • 14
2
votes
1 answer

Display Live Video from bytes coming from websocket in Flutter

I am working on a project where I want to display the live video from an external camera to the Flutter application. I'm using websockets to try and achieve this. This is the code of the websocket server made in python import websockets import…
2
votes
1 answer

Flutter better_player Package Stop and Play Video using Controller

I'm new with flutter and currently using better_player: ^0.0.81 package. Is there anyway to stop the video using a controller? Here is my code below late BetterPlayerController _betterPlayerController; Function _betterPlayerController =…
Koala
  • 352
  • 2
  • 7
  • 18
2
votes
1 answer

Flutter video player seekTo beginning of a video, takes time to play again in Android, works as expected in iOS

I'm developing a video app, using video_player package. I want to repeat the videos n times. I'm doing this by adding listener and when video reaches the end, if the current repetition is not equal to the N, I simply call the…
drose1db
  • 21
  • 3
2
votes
2 answers

How to properly put multiple VideoPlayer into a PageView in flutter?

I'm trying to create an app where I can switch videos with swipes (similar to TikTok). My current implementation looks like this: import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import…
rkfcccccc
  • 21
  • 5
2
votes
0 answers

Flutter: Video Player make app like instagram listview

I want to make an app like instagram in which response came from api which have images and videos but the issue is video player only play 1 video not a list of videos or each index of multiple videos so i dont know how to set it i tries it but could…
Adnan haider
  • 553
  • 8
  • 21
2
votes
1 answer

Flutter 2.5.2 giving error compile time app:checkDebugAarMetadata

I have updated Flutter New Version 2.5.2 and I got this error. ********************************************************* WARNING: This version of video_player will break your Android build if it or its dependencies aren't compatible with…
Pratik Butani
  • 60,504
  • 58
  • 273
  • 437
2
votes
2 answers

How to convert GIF to a mp4 video in Flutter?

How to convert GIF to a mp4 video in Flutter? With flutter_ffmpeg or any other packages.
2
votes
4 answers

Video not playing in flutter web application

I am trying to use Viedo as a backgrounnd for scaffold widget in flutter web application but the video is not displayed though it's working fine in android but is not displayed in web neither it's giving any sort of error. I am using this plugin to…
2
votes
1 answer

Video buffering when trying to play it flutter dart

I am trying to create a dog photo/video generator app using Flutter and Dart. It basically sends a get request to a website called random.Dog to get a url to show on my app. Sometimes the url is a video and sometimes it is a img. When it is a video…
2
votes
1 answer

How to apply video filters in flutter like tiktok or instagram?

I am building app like tiktok and want to implement that functionality in that app. Please help me. Also how to use tapioca: ^1.0.2 package to apply that filter, because there is no proper documentation. Also there is no video tutorials - please…
PR1NC3
  • 37
  • 6
2
votes
2 answers

How to play m3u8 links using flutters video_player or chewie or video_viewer plugin?

I have noticed some of the links are not working on iOS devices by using flutters video_player plugin, but If I use the below example link, it works well on all the devices even on android and…
wilz
  • 55
  • 1
  • 6
2
votes
1 answer

Video player breaks down in flutter 2.0 (null safety)

I want to show a video in my flutter app and like always, I am using the video_player plugin. But for some reason, now that I have migrated to null safety, the video player gives me this error Error: PlatformException(MEDIA_ERR_SRC_NOT_SUPPORTED,…
Siddharth Agrawal
  • 2,960
  • 3
  • 16
  • 37