I've ready testing with one hour streaming, there's no problem. But, we'll see for 4-6 hour streaming. And I change the key to switch scene with shift (shift+1, shift+2, etc) rather than 1,2, etc.Thanks for replying. I didn’t notice it yet on 30.1.2 but I just installed it and only streamed twice since then.
General observation although it might have been coincidental: the last time I experienced this bug I was cleaning up replay files before going live. Probably coincidental but just calling it out. Since I last saw it I have been making a habit of restarting my laptop before streaming and thus far I haven’t experienced it. Again, probably coincidental but sharing.
Also, while I’ve tried restarting my replay buffer which has never helped, I did notice that if I go in and remap my save replay buffer hotkey, it’s good for exactly one instant replay save. It then stops working until I go into settings and remap the hotkey again. I can do that as many times as I want to try to save a few replays while I’m streaming but it’s very distracting and unmanageable.
Just wanted to share in case it helps hone in on the issue.
Ooo! THAT'S a good detail to include! It's not a complete solution of course, or a direct pointer to the problem, but it starts to suggest what the problem might be under the hood. That's FAR better than just, "it doesn't work." Thank you!When I notice that a Hotkey doesn't work anymore, every other hotkey I have stays usable ONCE.
if (status && !status_prev)
{
do_something();
}
status_prev = status;
do_something()
only when status *becomes* true, and not constantly while it's true. And as-written here, it usually does. It might be tempting though, to write it like this, which *almost* works:if (status && !status_prev)
{
status_prev = status;
do_something();
}
if(...)
, which is normally in a state that has no effect on the condition shown here, but sometimes it changes to the other state...I tested it tonight. In less than 10 minutes the hotkeys broke. I had to stop the stream and go back to v27.Amazing find, Yogomi. I just installed it as well, testing it out this morning. You all can from the github releases and give feedback.
Here is the PR - share some love and appreciation, if you can! https://github.com/obsproject/obs-studio/pull/11100
Very interesting. What kind of Mac are you using?I’ve used it three times since commenting. A few hours of streaming with around 100 replays. No issues related to hotkeys on my end. I almost certainly would have seen it previously.
I saw one issue with encoding when writing the replay that I haven’t seen before but I’m relating it to laptop issues and a reboot seemed to resolve it for my next stream.
Also, to follow up, are you using a Bluetooth keyboard or a USB wired one?I’ve used it three times since commenting. A few hours of streaming with around 100 replays. No issues related to hotkeys on my end. I almost certainly would have seen it previously.
I saw one issue with encoding when writing the replay that I haven’t seen before but I’m relating it to laptop issues and a reboot seemed to resolve it for my next stream.
Okay. I'm trying them on an M1 Mac mini. When you say the streams crashed, do you mean the stream as a whole crashed?M1 Pro.
Also note that two of three streams have crashed at the very end (conveniently). But hot keys worked great.