I think that because Shadowplay work in VFR (at least that what kdenlive said with the video that recorded with Shadowplay), maybe it's not real VFR but timestamp base video (I just search and I was right, see here https://www.nvidia.com/en-us/geforc...4/258077/about-shadowplay-variable-framerate/)I forgot to mention, I also tested Nvidia Shadowplay recording using the Nvidia App, and it did not have interval stutter either.
Hi,Hi,
I do have one important question.
I'm working with a single-monitor system.
What would the setup be like with Elgato?
Do I need to work with two monitors and connect the Elgato to the monitor where the game is running?
Thank you for any further information.
Regards
ennimann
disabling reflex and using game fps limits didn't help. idk what to do anymorern trying it out with disabled RTSS fps limiter, and now i realize how useless that thing is. it doesnt improve framerate or latency for me, so i decided to turn that off completely. and im gonna disable CS2's nvidia reflex too, see what happens.
also tried fractional fps values, didn't work, tho it looks weird in obs settings but in cfg it looks fine
View attachment 112081 View attachment 112082
Fractional fps recording was the only one that worked for OBS for me. Looking at your screenshot, I think the way you're doing that might not work. OBS only accepts a max 6 digit numerator, so you'll have to find and multiply your refresh rate with a number that results in a numerator value that's below 1,000,000 for the numerator.rn trying it out with disabled RTSS fps limiter, and now i realize how useless that thing is. it doesnt improve framerate or latency for me, so i decided to turn that off completely. and im gonna disable CS2's nvidia reflex too, see what happens.
also tried fractional fps values, didn't work, tho it looks weird in obs settings but in cfg it looks fine
View attachment 112081 View attachment 112082
min_decimal_value = float('inf')
number_with_min_decimal = None
refresh_rate = 60.000083 # Change this to your refresh rate
for num in range(1000, 20000):
result = num * refresh_rate
if result >= 1000000: # Skip numbers where the result exceeds 1,000,000
continue
decimal_part = result - int(result) # Get the decimal part
if decimal_part < min_decimal_value:
min_decimal_value = decimal_part
number_with_min_decimal = num
print(f"Numerator: {int(number_with_min_decimal * refresh_rate)}")
print(f"Denominator: {number_with_min_decimal}")
print(f"Refresh rate * Denominator: {refresh_rate*number_with_min_decimal}")
VFR videos can be remuxed to CFR using a tool called mkvmerge.exe, which is included in MKVToolNix. All it will do is change the metadata to say that the video is a constant 60 fps (or other framerates of your choosing), which will make video editing software interpret it as a CFR video. Running the code below in Windows terminal will remux a video to CFR 60 fps, just replace "input.mkv" with your video's file name and format.I think the best fix will be adding VFR support in OBS, but then you will need to use editing program that support VFR (kdenlive do IIRC or at least can convert vfr to cfr for editing)
mkvmerge.exe -o output.mkv --default-duration 0:60p input.mkv
Thanks a lot!@ennimann This is going to depend on the refresh rate of your 4K monitor. I have a HD60 X too and it can only passthrough up to 4K 60 FPS. If 4K 60 FPS is fine, then use the Elgato OUT. If not, then use the DP2HDMI.
that may work in 'as it were' "AVR" "Average Frame Rate" (https://www.nvidia.com/en-us/geforc...4/258077/about-shadowplay-variable-framerate/ similar to ABR vs VBR case) not the real VFR, but anyway OBS should be updated to work at least with 'so to speak' "AVR"VFR videos can be remuxed to CFR using a tool called mkvmerge.exe, which is included in MKVToolNix. All it will do is change the metadata to say that the video is a constant 60 fps (or other framerates of your choosing), which will make video editing software interpret it as a CFR video. Running the code below in Windows terminal will remux a video to CFR 60 fps, just replace "input.mkv" with your video's file name and format.
Code:mkvmerge.exe -o output.mkv --default-duration 0:60p input.mkv
As far as I've tested it doesn't cause any issues, if you recorded your VFR video with the game running at 60 fps consistently, the remuxed video should look like a 60 fps video.
This is something OBS could maybe offer as a setting to do automatically if it adds a VFR recording option, since it already has a remuxing feature.
Yes I am using a single pc system with 2 monitors and it has this behavior in both borderless and fullscreenThanks for sharing the information!
Are you using a single PC system, and if so, how many monitors?
Is the game running in window mode or full-screen mode?