You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Encoder overload may be related to your CPU or GPU being overloaded, depending on the encoder in question. If you are using a software encoder (x264) please see the <a href="https://obsproject.com/kb/encoding-performance-troubleshooting">CPU Overload Guide</a>. If you are using a hardware encoder (AMF, QSV/Quicksync, NVENC) please see the <a href="https://obsproject.com/kb/encoding-performance-troubleshooting">GPU Overload Guide</a>."""]
133
-
elif(hasx264>0):
133
+
elifhasSoftware:
134
134
return [severity, "{}% CPU Encoder Overload".format(val),
135
135
"""The encoder is skipping frames because of CPU overload. Read about <a href="https://obsproject.com/kb/encoding-performance-troubleshooting">General Performance and Encoding Issues</a>."""]
"""The encoder is skipping frames because of GPU overload. Read about troubleshooting tips in our <a href="https://obsproject.com/kb/encoding-performance-troubleshooting">GPU Overload Guide</a>."""]
Copy file name to clipboardExpand all lines: checks/graphics.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ def checkAMDdrivers(lines):
46
46
47
47
48
48
defcheckNVIDIAdrivers(lines):
49
-
if (search('[jim-nvenc] Current driver version does not support this NVENC version, please upgrade your driver', lines) orsearch('[NVENC] Test process failed: outdated_driver', lines)):
49
+
if (search('[obs-nvenc] Current driver version does not support this NVENC version, please upgrade your driver', lines) orsearch('[NVENC] Test process failed: outdated_driver', lines)):
50
50
return [LEVEL_WARNING, "Old NVIDIA Drivers",
51
51
"""The installed NVIDIA driver does not support NVENC features needed for optimized encoders. Consider updating your drivers by downloading the newest installer from <a href="https://www.nvidia.com/Download/index.aspx">NVIDIA's website</a>. """]
0 commit comments