screenrecorder
screenrecorder copied to clipboard
Flutter package which can be used to record flutter widgets
This PR bumps the `Image` dependency to v4. Fixes https://github.com/Baseflow/screenrecorder/issues/39 It would be nice to have a release after this is merged. ## Pre-launch Checklist - [x] I made sure...
I think it would be nice if there is some percentage when exporting frames so I can show the progress to the user. Or maybe there are some alternative that...
I tried to create a fork of this and remove the assertions for transparency. It did not work as expected. Can you point me to the code where can I...
On io platforms it's possible to do the processing in a sticky background isolate. This approach was already prototyped in https://github.com/ueman/screenrecorder/pull/21 The prototype needs to be finished. Ideally the chosen...
If this package is running on web, it would be nice to be able to offload the processing of the frames to a webworker.
mjpeg is a video format which basically consists of an array of jpegs. An encoder for should be fairly easy to write in Dart. There are a couple of implementations...
I must use the latest version of the image package. Can you update this package to use the image package with the newest version?
I am wanted to show the user that frames are generating in percent
Added this widget on the videoplay, then recorded, and the final generated gif speeded up ` SizedBox( width: w-80, height: h-80, child: ListView.builder( itemCount: h~/10 - 8, padding: EdgeInsets.zero, physics:...
Hi, it's a good job to start with. However, I see the following issues. 1. Low quality image captured if given ratio 1. If I scale the image based on...