Helpful update to the replay buffer

DALDAL

New Member
I just discovered the replay buffer on obs and its extremely helpful. The only problem is the lack of transparency. There is no indication, light, or notice that a clip has been made using the replay buffer. Adding one will take a lot of guess work out of the equation when using replay buffer. Just a light indication around the download button or some change in color would be very helpful. thanks obs team for making a awesome tool.
 

qhobbes

Active Member
You can create a custom browser dock to show the directory where the replays are saved. Newest replays will be at the top.
HTML:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="1">
    <style>
        iframe {
            width: 900px;
            height: 500px;
        }
    </style>
</head>
<body>
<iframe id="iframe" src="file:///C:\Users\USERNAME\Videos\Replays"></iframe>
</body>
</html>
 

qhobbes

Active Member
One of the new features in OBS 27 is: When saving a file, the saved file path will be shown in the status bar [cg2121]
I don't know if it applies to replays (bandwidth too restricted now to DL) but try it out.
 
Top