SaaSHub helps you find the best software and product alternatives Learn more →
Top 3 C screen-recorder Projects
-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
-
recordmydesktop
Fork of recordMyDesktop X Window System desktop recording abandonware, much bug fixing and general cleanups/rewriting has been done. (by recordmydesktop)
Project mention: Disk write buffering and its interactions with write flushes | news.ycombinator.com | 2024-03-22One of the things I improved in my recordMyDesktop fork [0] was an awful tendency for the frame cache writer to accumulate heaps of dirty pages until background writeback would flush them out.
I had 16GiB of RAM which meant quite large swaths of dirty pages would become buffered while the SSD sat idle until writeback began. This would cause high-FPS full-screen recordings in particular to just become backlogged and start dropping frames / audio dropouts. Just generally broken behavior for a desktop recorder, especially for a defferred-encode mode that's supposed to be optimized for minimizing system-wide effects/overheads during the recording.
The simple solution I found was to proactively initiate writeback regularly via fdatasync() on the cache fd. [1] I haven't decided yet if more should be done to constrain its buffer cache effects though. The cache files will be read back during encoding in post, so if there's enough RAM it can be desirable to enable reading them back entirely from memory instead of having to hit the disks again... but it would also be nice to let the rest of the system's processes keep their stuff in the page cache. memcg can probably be used to find a balanced solution, but I haven't done any experiments yet. Have any of you handled similar scenarios? What did you do?
[0] https://github.com/recordmydesktop/recordmydesktop
[1] https://github.com/recordmydesktop/recordmydesktop/commit/42...
C screen-recorder discussion
C screen-recorder related posts
-
Free Screen Recorder With System Audio
-
Good Screen Recording App
-
Final Fantasy 7 Crisis Core Workss!!!
-
The Emulators built in recorder kind of sucks, why cant we save as Mp4?
-
How to record screen with audio on MacOS effortlessly ?
-
Is there any screenshot/screen recording tool like the new GNOME screen capture overlay?
-
Simple screen recording program for windows
-
A note from our sponsor - SaaSHub
www.saashub.com | 6 Dec 2024
Index
What are some of the best open-source screen-recorder projects in C? This list will help you:
Project | Stars | |
---|---|---|
1 | wcap | 844 |
2 | screen_capture_lite | 648 |
3 | recordmydesktop | 14 |