For questions related to playing a video with the Flutter open source framework by Google.
Questions tagged [flutter-video-player]
247 questions
0
votes
1 answer
Memory data source for Better player plugin flutter
I am building an app where users can post images or videos. I am having trouble finding the best way to display the videos. I have tried using the flutter teams video player plugin but I don't want to have to save the video as a file in order to…

TJ Campanella
- 1
- 2
0
votes
2 answers
How to add a double tap gesture to video player without loosing the focus of controls?
I tried it by wrapping the
return ClipRRect(
borderRadius: BorderRadius.circular(30.0),
child: Chewie(
controller: _chewieController,
)
with
return Stack(
children: [
…

kanwar manraj
- 492
- 8
- 26
0
votes
1 answer
How to play multiple video in grid view flutter?
VideoPlayerController _controller;
Future _initializeVideoPlayerFuture;
@override
void initState() {
_controller = VideoPlayerController.network(widget.post.downloadURL[0])
..setLooping(true)
..play()
…

kanwar manraj
- 492
- 8
- 26
0
votes
0 answers
How to use paginaton in flutter video player?
I am using flutter video_player library and I want to play a long list of videos but fetching only 3 videos at a time from the server?

Sam Rai
- 1
- 1
- 2
0
votes
0 answers
Flutter:how play video in background mode?
I want to play a video in backg mode in flutter. actually i want to play video even my phone is locked ,i know exo play can play a video in background service.
but I dont know how ply a video in background service
can help me ?

ghasem pirani
- 43
- 6
0
votes
2 answers
How to get src value in Flutter?
I am pulling data from REST API using Laravel Passport, the data has an embed code, I need to play the video, for which I have to use ext_video_player, how can I get the src value from embed code like this:
0
votes
1 answer
Flutter - Getting initializing audio error when navigating one video to another video
I have 5-6 videos and set them in slider. all things are working fine during navigation from one video to another but sometimes dart generate below error then video does not play. I am using video_player standard player to run videos. I am getting…

Kamlesh
- 5,233
- 39
- 50
0
votes
0 answers
Flutter: chewie using in Listview
I have a json data. json data contains a lof of video link. for example:
[{"id": 12, "name": "bryn", "link":"https://www.xxxxx.com/videos/asdasfrlşr.mp4"},{"id": 13, "name": "brynas", "link":"https://www.xxxxx.com/videos/fgfasfrlşr.mp4"},{"id": 14,…

FesaTR
- 47
- 6
0
votes
1 answer
Flutter Chewie behavior issue
Helo everybody, i need your help. I have a problem. I want to achieve only fullscreen player in landscape mode. And leave video player page on back button or leaving fullscreen. Without fullScreenByDefault: true everything seems to be fine. I can…

Александр Новак
- 11
- 1
- 3
0
votes
0 answers
How to disable audio capabilities for entire app
I have an app that plays videos using the video_player package. These videos have sound, but I don't want to play it. To achieve this, I use:
controller.setVolume(0.0)
The problem is whenever I open the app, even before playing a video, any…

Daniel Porteous
- 5,536
- 3
- 25
- 44
0
votes
1 answer
Flutter video_player unable to play a few videos from file
I'm building a Flutter app that takes a list of video clip URL's from Firebase, downloads them to storage and stores the file paths. Afterwards the user can go through the list of video paths and play the video clips that has been downloaded. This…

Claes Zacho
- 163
- 3
- 11
0
votes
1 answer
How can i catch server side error on flutter VideoPlayer?
When trying to fetch the video with the Vimeo url,video_player and chewie player, I get the error
Exception has occurred.
PlatformException (PlatformException(VideoError, Video player had error com.google.android.exoplayer2.ExoPlaybackException:…

Erbay Mavzer
- 69
- 2
- 7
0
votes
2 answers
How to print a video path in videoplayercontroller.asset() in flutter
So I was trying to make a feature where when we click an icon button it will change the video path. It will change the video path using string. I was using a print("$videoname"), to make sure the string changes, and it does. But it still doesn't…

Vince
- 43
- 8
0
votes
1 answer
Using a CachedVideoPlayer in a listview
I am attempting to show videos in a listview that is preventing me from declaring the videocontroller in the initState. This causes me to accidentally be redrawing the video multiple times during the application. I am receiving this error:
FATAL…

tyler powell
- 130
- 1
- 12
0
votes
1 answer
Not able to download and play video files that are uploaded by an Android Emulator on an iOS physical device using VideoController in Flutter
I simply want to play a video that I recorded and uploaded from my Android Emulator on my iOS device but for some reason, I am not able to download it using VideoContoller in Flutter. I wonder if this has something to do with the format of the video…

Nav Nav
- 169
- 1
- 20