Finally sick of all the random crashing

sendekyo

New Member
CPU: Intel(R) Core(TM) i7-6850K CPU @ 3.60GHz
32GB RAM
RTX 2080 8GB VRAM

Sometimes when I am streaming I will get random crashes. Sometimes this not only affects OBS, but also Discord, Edge, Chrome, Streamdeck, etc. in some combinations. There does not seem to be any trend or reason other than my multitasking attempts. Is there anything that I can fix or is it just my PC showing age?

 

Attachments

  • Crash 2024-07-15 19-54-20.txt
    240.3 KB · Views: 21
  • Crash 2024-06-14 20-56-20.txt
    283.6 KB · Views: 20
  • Crash 2024-06-12 22-37-58.txt
    285.1 KB · Views: 17

sendekyo

New Member
I have two LUA scripts loaded (bounce and countdown) and it was happening before I installed bounce, so is it countdown? Even though the crashes happen on the game scene almost exclusively.

What should I do? Delete or reinstall the files you mentioned?
 

Suslik V

Active Member
Code:
Thread 2788: libobs: graphics thread (Crashed)
Stack            EIP              Arg0             Arg1             Arg2             Arg3             Address
00000067CDA2FB48 00007FFFCEFF0BE9 000001761CB40380 000001761CB40380 000001761CB40550 000001761CB40550 obs.dll!obs_sceneitem_set_pos+0x19
00000067CDA2FB50 00007FFF1F96A835 000001761CB41360 00000176049EE0F0 000001760994D800 000001761CBB7F68 obslua.dll!0x7fff1f96a835
00000067CDA2FB90 00007FFF55FF2CB0 0000000000000001 000001761CB40380 000001761CBB7F00 0000000000000000 lua51.dll!0x7fff55ff2cb0
00000067CDA2FBE0 00007FFF5605505A 000001761C17A040 0000000000000008 0001AA20E17D7BA4 0000000000000000 lua51.dll!0x7fff5605505a
00000067CDA2FC10 00007FFFC34D7464 0001AA20E17D7BA4 0000000000000001 0001AA20E17D739D 0000000000000000 obs-scripting.dll!lua_tick+0xe4
comes from the: https://obsproject.com/forum/resources/bounce.947/ script.
Please, make report to the thread of the script itself: https://obsproject.com/forum/threads/bounce.121369/
The script makes unsafe calls of theobs_sceneitem_set_pos function at least in two places.

You can try to modify the script. For example, secure the calls by null-checks, like (here example is for the "original_pos" only):
Lua:
if scene_item then
    obs.obs_sceneitem_set_pos(scene_item, original_pos)
end
You need to modify the code by yourself or ask some other programmer to do this for you.
 

sendekyo

New Member
Code:
Thread 2788: libobs: graphics thread (Crashed)
Stack            EIP              Arg0             Arg1             Arg2             Arg3             Address
00000067CDA2FB48 00007FFFCEFF0BE9 000001761CB40380 000001761CB40380 000001761CB40550 000001761CB40550 obs.dll!obs_sceneitem_set_pos+0x19
00000067CDA2FB50 00007FFF1F96A835 000001761CB41360 00000176049EE0F0 000001760994D800 000001761CBB7F68 obslua.dll!0x7fff1f96a835
00000067CDA2FB90 00007FFF55FF2CB0 0000000000000001 000001761CB40380 000001761CBB7F00 0000000000000000 lua51.dll!0x7fff55ff2cb0
00000067CDA2FBE0 00007FFF5605505A 000001761C17A040 0000000000000008 0001AA20E17D7BA4 0000000000000000 lua51.dll!0x7fff5605505a
00000067CDA2FC10 00007FFFC34D7464 0001AA20E17D7BA4 0000000000000001 0001AA20E17D739D 0000000000000000 obs-scripting.dll!lua_tick+0xe4
comes from the: https://obsproject.com/forum/resources/bounce.947/ script.
Please, make report to the thread of the script itself: https://obsproject.com/forum/threads/bounce.121369/
The script makes unsafe calls of theobs_sceneitem_set_pos function at least in two places.

You can try to modify the script. For example, secure the calls by null-checks, like (here example is for the "original_pos" only):
Lua:
if scene_item then
    obs.obs_sceneitem_set_pos(scene_item, original_pos)
end
You need to modify the code by yourself or ask some other programmer to do this for you.
I can stop using bounce. I thought it would be fun to have something like the DVD screensaver, but it's definitely something I don't need to keep.
 

sendekyo

New Member
I streamed yesterday for over two hours with no crashes. So far so good, although the log file still shows some odd error message that I do not understand.

05:34:45.316: [obs-browser: 'Chat'] Error: [Report Only] Refused to load the script 'https://streamelements.com/z/i.js' because it violates the following Content Security Policy directive: "script-src 'none'". Note that 'script-src-elem' was not explicitly set, so 'script-src' is used as a fallback.
 

Suslik V

Active Member
Content Security Policy directive: "script-src 'none'"
This message means that the "streamelements" site creators didn't make internet page fully compatible with OBS Browser Source.
More info you can get only from developers of the "streamelements" service.

If you wish, you can reproduce it locally by modifying special test html file (here is the source code: https://obsproject.com/forum/thread...t-play-music-in-headphones.164572/post-604343 ). Error itself doesn't cause any harm, but some features of the loaded web page will be unavailable for you.
 
Top