Black screen when capturing from multiple clients
See original GitHub issueI had a game bot that worked by image recognition and I’m trying to use Direct3DHook so it can detect images in background
The problem is that sometimes I’m getting black screens as result:
I guess the bot is trying to process images before they’re captured.
I don’t understand why processing images is an async method while processing them takes only a few miliseconds.
For example, trying to do:
CaptureImage(); Thread.Sleep(1000);
It will only do the Sleep but not the CaptureImage();
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
[SOLVED] OBS Game Capture Black Screen Issue
The reason for the OBS black screen under this situation is most likely due to OBS and the game you want to record...
Read more >5 Ways to Fix OBS Black Screen Game Capture
Step 3: Launch your game and attempt OBS Studio to capture the action. For many customers, happily, the OBS game capture dark screen...
Read more >How do I solve OBS capture specific window black screen?
I want to stream with a more professional look and I want the *ehem* League client to be captured seprately to the game....
Read more >FIX OBS BLACK SCREEN DISPLAY CAPTURE ... - YouTube
FIX OBS BLACK SCREEN DISPLAY CAPTURE [Easy FIX 2023] multiple solutions - FIX OBS Black Screen Display Capture !
Read more >How to Fix an OBS Black Screen Capture Error
There are a few causes for the OBS black screen capture error, ... right pane to the Multiple displays section and select Graphics...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Not being able to make this work:
GetScreenshot
I’ve just tested now by replacing the
btnCapture_Click
event code withvar res = _captureProcess.CaptureInterface.GetScreenshot();
I get
null
as returnI am also getting null at
_captureProcess.CaptureInterface.GetScreenshot();