Interval stutter / jitter / duplicated frames bug - workarounds

Jobima

New Member
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)
 

Jobima

New Member

ennimann

New Member
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
Hi,

Can someone please answer this question?
Thank you

Regards
ennimann
 

qhobbes

Active Member
@ennimann There's 2 ways you can go about this. You can mirror a single monitor setup to the Elgato using your computer. This may use additional resources OR you can get a HDMI duplicator with one going to your single monitor and the other going to your Elgato.
 

ennimann

New Member
Hi,

thanks a lot.
But, how can i only capture the window from my game with elgato, if the elgato capture the entire content from display?
Thanks again

Regards
ennimann
 

ennimann

New Member
Unfortunately, I don't understand that.
I have a single-PC setup with a 4K monitor.
The racing game runs in a window at 2560x1440.
On the desktop, I also have OBS and other tools for operating and controlling the cameras in the racing game.
I would connect the capture card via HDMI and the monitor via DisplayPort.
I duplicate both displays in Windows.
Then I get the same image content on the capture card as on the screen.
The racing game usually runs in the background, but not minimized.
If I integrate the capture card as a source in OBS, I see the same content as on the screen, right?
How am I supposed to get the racing game fully into the OBS preview?

Sorry for all the "stupid" questions, but I can't imagine how that's supposed to work.

Am I making a mistake?
 

qhobbes

Active Member
1. Go to Settings, Video and set the Base (Canvas) Resolution to 3840x2160.
2. On the Settings for your capture card, set the Resolution to 3840x2160.
3. Now you need to crop 1280 horizontally and 720 vertically. If the racing game window is in a corner then it should be easy to calculate how much to crop. For example, if the window was in the top right, you crop 1280 from the left and 720 from the bottom. You can crop a source 2 ways. 1. Click on the source in the preview, hold Alt and click and drag the corners or middle side squares. 2. Right click on the source, Transform, Edit Transform (or Ctrl+E). Here you can manually type in how much you want to crop. Remember those settings in case you need to remove and re-add the source or reset it.
4. You should now have a 2560x1440 source. Go to Settings, Video and set the Base (Canvas) Resolution to 2560x1440. You may need move around the source or re-add and re-crop if not displaying the correct area of the content.
 

ennimann

New Member
Hi,
the Elgato Capture Card is here.
What is the right connection please?

1742925551856.png


Thanks a lot
Regard
ennimann
 

flapk1337

New Member
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
disabling reflex and using game fps limits didn't help. idk what to do anymore
 

qhobbes

Active Member
@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.
 

TexelGuy

New Member
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
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.

You can use this Python code below to quickly calculate the numerator and denominator combo that gives you the smallest decimal value. Just enter the refresh rate you found using displayhz.com into the "refresh_rate" variable and run it. You can run this code online by pasting it into the W3Schools Python compiler.

Python:
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}")
 

TexelGuy

New Member
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)
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.
 

Jobima

New Member
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.
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"
 

Sejbo8000

New Member
So I might have made an interesting discovery for this issue or something very similar to it (Don't get your hopes up it might just be a similar issue) So I get duplicated frames when recording and my preview shows a lot of jitter during movement. I never needed vsync since I have Gsync so I always turned it off completely in nvcp and always set my monitor tech to use Gsync. I also always lock the games fps to 60.

Here is the interesting part so I thought what if I turned on fixed refreshrate and turned on 3d application setting in the vsync field globally? I of course restarted the game and obs and suddenly it ran super smooth. I had no more duplicated frames and no more jitter. I then turned off 3d application Vsync and the jitter returned. So the fix for the stutter were both of those settings. The only issue I had then would be screen tearing so I thought that obs might want like fixed refresh more and also want vsync for 3d applications for some reason. Then I remembered that you can assign nvcp settings to specific programs. I then made obs fixed refresh and made only obs have vsync 3d application, I also turned off global vsync 3d application but I still had dup frames and jitter. I had also turned on gsync globally again since I want obs to use fixed refresh and my screen and game to use gsync. Surprisingly enough I turned on global vsync 3d application again while obs had fixed refresh and after restarting obs and the game the dup frames and jitter was gone.

To sum it up turning global vsync in the nvidia control panel to 3d application and making only obs run in Monitor technology: fixed refreshrate fixed my stuttering and dup frame issue. At the same time the game still uses gsync. I will have to properly record now to confirm that it is a proper fix for me but so far it seems to work. Hope it works for someone else too
 

ennimann

New Member
Thanks 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?
 

Sejbo8000

New Member
I apologize it dosent get rid of the issues it just makes them harder to notice but they are definitely there but to a lesser extent. I did some more testing and recorded some videos and it is sadly still visible.
 
Top