For questions related to playing a video with the Flutter open source framework by Google.
Questions tagged [flutter-video-player]
247 questions
0
votes
0 answers
Flutter: Betterplayer iOS Picture-in-Picture(Pip) mode
I using https://jhomlala.github.io/betterplayer for flutter video player.
When enable Picture-in-Picture(Pip) mode, the original video still remain and still playing. Suppose to showing black blank screen.
I not understand swift or objective-c, so…

FeelRightz
- 2,777
- 2
- 38
- 73
0
votes
0 answers
flutter_video_player custom logic on toggle fullscreen
I have a Flutter widget and I want to hide the scaffolds bottom navigation bar, when I enter fullscreen mode with flutter_video_player. It should probably work with custom controls but I just cant get it working.
Whenever the user enters fullscreen,…

F.Tepel
- 140
- 1
- 6
0
votes
1 answer
Video Player plugin for Flutter not working correctly when deploy to Firebase hosting
I have built the widget that uses video_player 2.6.0 package from https://pub.dev/packages/video_player.
This is the code:
import 'package:flutter/material.dart';
import 'package:video_player/video_player.dart';
void main() => runApp(const…

Hung Pham
- 42
- 6
0
votes
0 answers
flutter video_player sometimes take a lot of time to load a local saved video
I am working on an app where I show videos in a PageView like TikTok. It was very hard with the video_player package to make it work, but I was able to do it correctly. I did it so that the first time it downloads two or three videos into my…

sm_sayedi
- 326
- 2
- 17
0
votes
0 answers
Flutter: Video Player unable to perform seekTo functionality for videos over 720p
I am using flutter video player version ^2.4.8 and using seekTo method to skip few sections of video.
If I am using video below 720p the seekTo method is working properly and video is getting skipped. But the seekTo method is not working for videos…

tushar
- 36
- 4
0
votes
1 answer
I am creating simple video player app in flutter but it show me execption
when I debug my code it show me error
import 'package:flutter/material.dart';
import 'package:video_player/video_player.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
State createState() =>…

M.Shahzad
- 106
- 10
0
votes
1 answer
Flutter Video Player appears on second time webpage loads and overlay buttons not functional
Link: Website
Problem: The video on the front page below the video banner does not render until you navigate away from the page and return back. When the video finally appears and plays, the play button does not work. Is there a way to have the…

JGTechie
- 55
- 6
0
votes
1 answer
How to play m3u8 file in flutter. | Exoplayer 403 user_agent rejection error
I am new on flutter. I am trying to integrate video player in my app which can play m3u8 video but only some file can play when they only exoplayer user_agent.
and when I shift to webview than it's dropping frames please help me to find the…

dhruv aggarwal
- 1
- 1
0
votes
0 answers
Move across multiple video controller
I am trying to use video_player package to play multiple videos continuously. I am using VideoProgressIndicator which allows scrubbing in a video. I am able to move across the video which is currently playing but how to detect that user tapped on…
0
votes
1 answer
How expensive are videos in Flutter?
Normally, if a widget has to rebuild many times or requires a lot of GPU resources, it is expensive. So, how about videos?
For example, consider the two following scenarios:
A screen with a black star shape (made of a widget like ClipPath or…

David A.
- 291
- 1
- 2
- 7
0
votes
1 answer
Flutter displaying video from iOS Gallery
I'm trying to implement the functionality of:
Recording a video (it's automatically saved to the apps memory)
Moving video file from apps memory to gallery (in this step we also save path to newly created video in gallery)
Displaying video from…

Karzel
- 928
- 9
- 24
0
votes
0 answers
How can I get more control on embedded video in Flutter?
I want to play videos on my Flutter application. So I have implemented flutter_inappwebview and gave it a initial URL like this:
initialUrlRequest: URLRequest(
url: Uri.parse(state.selectedOption!.url!)),
It does show…

Ahmet Bugra Ozcan
- 106
- 1
- 8
0
votes
1 answer
Flutter video player using high data
When i use flutter normal video player in my project when video playing high data consumption and data using speed above internet speed indicator show above 3 to 5 MB speed ,
how decease data consumption and how limit data speed
0
votes
0 answers
Flutter: A problem occurred evaluating root project 'android'. > Cannot run Project.afterEvaluate(Closure) when the project is already evaluated
I am trying to build a flutter app that uses many packages, these packages can sometime be a problem with the compileSdkversion so whenever I try and change it new errors come up.
Whenever I do
flutter build apk --release
Wanting to build my app, I…

Altix
- 1
0
votes
1 answer
How can I play .m3u8 ( HLS ) video streaming channels in a flutter app
I will be very grateful for help.
I have many .m3u8 network which are video streams, and I want to play them inside a flutter app.
I'm aware of the video_player package but it doesn't seem to have the ability to play them.
Can you help

Gwhyyy
- 7,554
- 3
- 8
- 35