Flutter screen recording - android

Hi Im trying to record a screen because I don't find a way to add an overlay to the camera video save.
I tried many plugin flutter_screen_recording, screen_capture_event, device_screen_recorder and screen_recorder but I didn't find a way to make them work properly. I chosen screen recording but if you have a solution to add the overlay in the camera video i take it too.
Thanks.
EDIT: For more informations the plugin flutter_screen_recording work fine on ios but not on android

There is Package for Screen Recording in flutter called flutter_screen_recording
You can try this

Related

Is it possible to record only part of a screen?

I want to record only part of a screen
I`ve tried this sdk to record a screen, but I was able to record only full screen of device
Screen recording can be done without requiring root (Android 5+) using the MediaProjection package. An example of a recording activity can be found here.

How to prevent my app from capturing screen recording in android?

I am working on video player app and I want no other app can record my video and audio as well. I am using simple VideoView to run videos in my app.
I have tried this code, this code prevents from taking the screenshot only.
getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);
Problem
But when I downloaded a screen recording app i.e. DU Recorder and check by recording, it's recording my video's screen and audio as well, this i don't want.
Could anyone help me from this? Thanks in advance
If you are using SurefaceView with media player then use SurfaceView.setSecure(true) , then your video will be secured from any other apps.
Pull down your bar on the screen go to settings and find shortcut keys then you can turn off the automatic screenshot setting

Can we record screen video of android devices?

Is their any source code or sample project which allows to record video of the running screen of application.
I have to make an application which has ability to record video of the application screen in android devices.
I search about this, but haven't find anything.
I have developed it.
For that you have to make background service and programmatically capture screenshot on every second and after that combine all images and make video using FFMPEG.
I hope it will work for you.
Let me know if you need more help in same.

how to capture video without showing the camera window or program

i want to capture in android programming without showing the camera
only want to have two button, by clicking first button, it start capturing and by clicking the second, capturing will be stop and save the file somewhere in phone.
also saw this link Video Recording and Image Capture on Android using Camera Intents
its first week that i started android programming, thanks for your helps
There are two ways to capture videos on Android.
The first way is to use an Intent (a message) to ask applications able to capture video to start and to capture the video for you.
The second way is to build your own video recorder.
The first option is not suitable for you, as you will not be able to control the display of the called application.
Concerning the second option, there is a great tutorial on the official website about how to develop a camera application. Here is the link Camera App tutorial. Basically you will want to look to the part called "Building a Camera App" and "Capturing video". As you will see through the tutorial they use a SurfaceView (which you put in your layout just as any other view) to display the camera content. You can just follow the tutorial and then set the visibility of the view to false. Or, if you're more confident, you can try to skip part using the surfaceview.
Hope i could help !

Video inside android app

I would like to add one video to the main screen of my application but I want to user to be able to do other things in the app meanwhile. Think about some video animation or flash movie for some website that you can watch the video and look on other things in the website.
lets say I have buttons and more things in the same screen and I want a small video to be playing there too in a loop.
is this possible?
I thought that Flash movie could be good for that, but its only for latest versions of android then I don't want to use it.
Thanks.
You can just use the VideoView.

Categories

Resources