Flutter video player caption adjustment - flutter

Is it possible to move the caption (subtitle) of flutter's video to different position? I'm using https://pub.dev/packages/video_player and was wondering if it's possible to customize where the subtitle will appear. Also is it possible to toggle the caption on and off while playing the video?

just use Stack widget and you will be fine

Related

How to show video on carousel using flutter?

I am new to flutter. I am trying to show video in a carousel. I am able to show images but when it comes to video I'm stuck. I have searched everywhere but couldn't find any example.
If you know how to implement a photo carousel, it should be easy to make a video carousel. Just implement a video player using chewie package and just place the video widget instead of the image widget.
https://pub.dev/packages/chewie
As you have provided no code in your question. So, I do not know why you are stuck in video. Also, you can check the below question/ans:
Video Carousel slider for flutter

how to overlay text on webrtc RTCVideoView flutter

I want to overlay the text on RTCVideoView flutter and also record this text along with the video.
I'm using Flutter Webrtc package for video rendering and I want to overlay text on the screen and save it after that.

Flutter control slider with keyboard arrows

I am trying to make an android tv app with a basic video player using the video_player plugin.
One of the issue I am having is that the slider control for the seek time is not being focused and I cannot drag it with the keyboard.
Is there any way to accomplish this? Maybe with a keyboardlistener?
Thanks

Flutter display logo over camera preview and capture

I'm trying to show the logo over the camera preview. If the user click the capture button logo should be placed in the image. Thanks in advance.
You need to use FFmpeg package for the flutter or any alternative.
Refer https://github.com/tanersener/flutter-ffmpeg
Example: https://stackoverflow.com/a/59000723/5882307

Customizing the screen of Movieplayer in iPhone

I've few doubts regarding movie player app
How can I customize the screen size. I want only video or movie to be played only to half the screen and I want to add custom controls buttons to the remaining half of movie player.
In movie player example overlay view is there but how to change the name of the button and label in that and I'm unable to do that.
The MPMovePlayer UI cannot be modified. It plays fullscreen video, and provides the default controls. There's currently no way to do what you need in the official iPhone SDK.
Use this link for video player customization:
https://developer.apple.com/library/ios/samplecode/MoviePlayer_iPhone/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007798
download sample code and modify accordingly.