how to overlay text on webrtc RTCVideoView flutter - 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.

Related

How to Port Telegram Sticker Animation .tgs into flutter?

Telegram has a moving sticker animation using the tgs extension, how to make it work for displaying in a flutter project?
I want the telegram animation sticker to be realized on the flutter widget

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

Flutter video player caption adjustment

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

How to overlap text or image on video file in flutter

I want to edit the video file and overlap the text or image on this like an Instagram story.

play video on flutter with transparent background

I did some complex 3d animations on blender and I want to play them on flutter. The problem is that when I export the animation into a video and I put it on my flutter app the transparent background is gone. I'm using video_player to play videos on flutter and the video extension I use is .webm because is the only one I know that can be readed on flutter and have a transparent background but the application puts a black background in the video.
The conclusion I get is that video player plugin is not the best idea to do it. So i've been searching about how flutter manage gifs and it's manage alpha channel perfectly because it can manage alpha channel on image. But the next problem is how to control the gif, for that I use gifimage plugin which works really well to reproduce an animation. Finally the last problem is to export from blender to a gif, blender can't export on gif format so you should export into a quicktime format with Qt animation codec and then convert it to gif. If for some reason the first frame of the gif stay as background of the gif you should edit the gif with photoshop for example and change in the timeline the first frame to not disappear to disappear.
Current player plugin uses ExoPlayer on Android. I found this issue on the repo.