Issue I am trying to make a video player plugin work for the video_player package on flutter. This is all on an embedded target (iMX8M Mini). This plugin uses gstreamer to function. However, while gstreamer pipelines on the terminal work
Continue readingCategory: Video Player
PageView.builder reload content after navigation to the new page
Issue I have a list of videos urls/youtube IDs and a PageView.builder. I want to load next/previous video according to position in the list. For example: List videos = [‘vid_0’, ‘vid_1’, ‘vid_2’, ‘vid_3’, ‘vid_4’] if current Playing video is vid_2,
Continue readingIssue with video_player : 2.2.19 package
Issue Getting this error on release build for video player, but the debug build works fine PlatformException(channel-error, Unable to establish connection on channel., null, null) I/flutter (13504): ————StackTrace————- I/flutter (13504): #0 VideoPlayerApi.create (package:video_player_android/src/messages.dart:181) I/flutter (13504): I/flutter (13504): #1 AndroidVideoPlayer.create (package:video_player_android/src/android_video_player.dart:56)
Continue readingHow to stop the video player from playing when moving from one page to another
Issue I am using video_player package for displaying a video. I have written the video player inside separate class. The issue is, during the video playing, when I try to close the page by pressing back button, a bottomsheet will
Continue readinghow can display play and pause button in videoplay on flutter?
Issue how can display play and pause button in videoplay on flutter? And when user click the play, how do hide the button? I used this methods, but it was only show very small icon… how can to do like
Continue readingDo we need to manually delete the recorded cached video file using ImagePicker flutter plugin?
Issue 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: /data/user/0/com.example.app/cache/999b6a18-114b-4fd3-b089-09ce4574bf765726458033916036262.mp4") In the plugin docs it says Note: Images and videos picked using the camera are
Continue readingWhy the Video is not fullscreen in VideoPlayer in flutter?
Issue I copied and pasted the example of the VideoPlayer package but on the web is not full screen, how can I solve this. Example Code import ‘package:video_player/video_player.dart’; import ‘package:flutter/material.dart’; class HomeScreen extends StatefulWidget { const HomeScreen({Key? key}) : super(key:
Continue readingFlutter: youtube_player_flutter Unable to fetch the metadata
Issue How can I fetch the video metadata? I’m using youtube_player_flutter When I start the app the video play correctly but the metadata like the ‘author‘ or the ‘title‘ always start at ‘null‘. Only when I ‘Hot Reload‘ the app
Continue readingFlutter Video Player Automatically Pauses when overlay video appears on screen of other application
Issue I have a background in my application screen that plays in a loop. The video works fine when we change the screen and when we change the state of the application(pause/resume) but there is a huge problem. When I
Continue readingSend firebase storage authorization as url parameter from a flutter web app
Issue I would like to know how to make an authorized request to firebase storage using the user Id Token as a parameter in the url. Right now with a firebase rule of ‘request.auth != null’ I receive a 403
Continue reading