EnviroNat

New Member
Hi! Attached are the logs and error from the latest streams I did where OBS crashed mid-stream numerous times. A friend of mine believes that OBS is crashing while trying to load a video of some kind, as you can see in the first crash log it tried to load a video and ran into an error on OBS' side. I'm struggling to identify what is the exact issue and how to solve it. Any suggestions would be appreciated!
Screenshot 2024-03-15 153315.png
 

Attachments

  • Crash_2024-03-04_11-39-33.txt
    243 KB · Views: 8
  • Crash_2024-03-04_11-45-33.txt
    154.9 KB · Views: 6
  • Crash_2024-03-15_10-40-44.txt
    18.4 KB · Views: 6

Suslik V

Active Member
Code:
Thread 10D4: (Crashed)
Stack            EIP              Arg0             Arg1             Arg2             Arg3             Address
000000D254F2F6A8 00007FFA831F4B52 0000000000BDD800 0000000000000000 0000000000000000 0000000000000000 obs.dll!os_breakpoint+0x2
000000D254F2F6B0 00007FFA831C06A1 0000000000000000 0000000000000000 0000000000000001 000002A3036142A8 obs.dll!bmalloc+0x41
Means that the program run out of memory (RAM). There was attempt to allocate memory for OBS source but nothing left for the application. Thus, it crashed.

Try to monitor memory usage RAM and VRAM via Task Manager. If some application consumes memory too much and its usage constantly grows then either application is written with errors (including some external component of it, as "plugin" you have installed yourself, for example) or you demanding too much from your PC. Also, it is possible that device driver (capture card, webcam etc) is bugged a bit - the crashed thread has traces of DirectShow device usage (usually, you see it as Video Capture Device source in OBS).
 
Top