Hey all, just wanted to know if anyone has heard of screen recording software that can record in the way that for example an NVR can, where it records continuously but dumps data older than a certain interval, e.g. an hour or a day. The intended purpose would be for troubleshooting intermittent computer issues, attempting to capture trouble behavior when it occurs and the lead-up to it without taking up huge amounts of space.
+ Reply to Thread
Results 1 to 3 of 3
-
-
Try OBS Studio. It has a Replay Buffer feature that can continuously record screen or game footage to the computer's temporary memory (RAM), constantly overwriting older recordings. When an exciting or interesting scene appears, you can press a shortcut key to save the recording in the scrolling buffer to your hard drive.
https://obsproject.com/forum/resources/how-to-setup-instant-replay-in-obs-studio.613/ -
You should search for:
Google: Rolling desktop recorder
You could use FFmpeg to record your screen/desktop and do something similar.
FFMpeg: Capturing Your Desktop / Screen Recording
For example with a simple batch script you can capture your desktop, even multi-screen, with a "primitive" buffer of 5 minutes.
Works surprisingly well.
ScreenRecordRolling.bat
Or using filenames with date/time:Code:REM @echo off TITLE Screen Recording Rolling :loop del output_old2.mkv ren output_old1.mkv output_old2.mkv ren output_current.mkv output_old1.mkv ffmpeg -loglevel quiet -t 00:05:00 -f gdigrab -framerate 30 -i desktop -c:v libx264 -crf 20 output_current.mkv Goto loop
ScreenRecordTime.bat
Then you can make something to delete files after certain time/days?Code:REM @echo off TITLE Screen Record Timestamp :loop FOR /f %%a in ('WMIC OS GET LocalDateTime ^| find "."') DO set DTS=%%a set CUR_DATE=%DTS:~0,4%-%DTS:~4,2%-%DTS:~6,2% set currdatetime=%time:~0,2%%time:~3,2%%time:~6,2%%time:~9,2% set "currdatetime=%currdatetime: =0%" ffmpeg -loglevel quiet -t 00:05:00 -f gdigrab -framerate 30 -i desktop -c:v libx264 -crf 20 output_%CUR_DATE%_%currdatetime%.mkv Goto loop
Google: batch delete files older than X daysLast edited by The_Doman; 5th Jun 2026 at 12:31.
Similar Threads
-
Screen Recording Software
By Bridgy in forum Newbie / General discussionsReplies: 9Last Post: 12th Mar 2025, 21:30 -
How to screen record DRM Protected Video?
By solarjunk in forum Video Streaming DownloadingReplies: 7Last Post: 19th May 2023, 09:28 -
Rig for NVR cameras
By pm125 in forum Newbie / General discussionsReplies: 0Last Post: 23rd Dec 2022, 08:35 -
Screen recording software with x265 codec support and small output size?
By Unknown01 in forum Newbie / General discussionsReplies: 1Last Post: 31st Aug 2022, 00:02 -
Screen recording software. Which one?
By voayer in forum Video Streaming DownloadingReplies: 8Last Post: 9th Jan 2022, 14:56



Quote