Latest reviews

Pretty disappointing. It offers too few features for the price, and basically all of them can be implemented just as well or even better with other, free plugins. This not only makes it too expensive but calls its very reason for existence into question. Not recommended. My opinion :)
This plugin is amazing. Solved my problem easily. Congratulations for the project.
I hope see in the next versions, a shortcut to split record. This is only thing that i need. thank you so much.
Easy to install, easy to use, great effects!
Hey, unfortunately I can't get the plugin working on the most recent version of OBS. The filter is not showing up at all in the scenes after using both windows install methods.
Exactly what I was looking for!
Hello, I have seen that you programmed this plugin with AutoHotkey!
I'm also an ahk user and have one problem with the OBS-HUD.

I use some obs docks and your OBS-HUD on a second monitor to view if streaming is on or off, which scene is active and the chat.
I have a hotkey which enables with ahk a black "progress bar" on top on every window (alwys on top) on the second monitor. This progress bar filles the whole screen. So only when I want to see new chat messages or something else, I disable the black progress bar.
The problem is, the green streaming dot from your OBS-HUD is always on top, even on top of the ahk black progress bar, even if the bar itsels is set to alwys on top.
It is also strange, that the red dot for recording, is under the black progress bar.
Why this different behaviour between green and red dot?
Could you please make the green dot not making always on top?
CobaltDragon
CobaltDragon
The always-on-top window style of the OBS-HUD icons is intentional. Disabling that style would cripple the core design objective of creating the most reliable visual indicators of OBS status possible. AOT applications are just not suited to be run in the same screen space, as their competition for z-order priority will cause these display issues. The fact that one OBS-HUD icon shows above your progress bar application and another shows below is a perfect example. I can't explain why the z-order is working out that way, and there are innumerable possible configurations for other users I would have no way to test or understand. At this time I don't see a feasible change in OBS-HUD to address this issue.
I use this with stream deck. Stream deck has an option to able/disable filters. But stream deck doesn't have an option to switch virtual cam sources/scenes. So I can apply filters (switch virtual cam sources/scenes) with just a touch of a button on my stream deck.

This helps while recording and on a video call with my friends. (sometimes Ill share my screen with my friends but it's nice not having to set up a new screen share button for different apps. I can just always have OBS and use the virtual cam filters).

So there is still a need for this unless there's another way to do the same thing without it. I haven't found a way yet. I'm gonna be sad if it ever stops working.

Awesome filter! I wish I knew how to make stuff like this.
I noticed that version 0.5.1 is being announced, but the download link still points to 0.5.0. As a result, StreamUP keeps prompting for an update, even though the version seems up to date—or at least mislabeled.

Someone mentioned that 0.5.0 had issues on Windows 11, but I downloaded what was labeled as 0.5.1, and it runs just fine on Windows 11. However, when I check the version, it still appears to be 0.5.0.

This is a bit confusing. Could you please clarify what's going on with the versioning and download?

Thanks in advance!
Just what I needed, simple and great to use.
Well done! I needed to transition the audio for music from scene to scene. Works great so far.
great program great person working behind it will download for multiple people
iainmacleod
iainmacleod
Thank you for the kind words! Hope you get what you need out of it, let me know if there are any enhancements you'd like to see.
I'm still learning how to use this plugin, but I already know it is powerful, and is only getting more so by the update. Thank you for all the time you have put into this. It has resolved a number of real production issues for me.
I tried to make a TouchPortal button to activate and disable the dock. can you tell me why it doesn't work?
-----------------------------------------------------------------
obs = obslua

dock_name = "draw-dock" -- Name des Docks in OBS
hotkey_id = obs.OBS_INVALID_HOTKEY_ID

function toggle_dock(pressed)
if not pressed then
return
end
-- Hier keine Abfrage mehr, nur umschalten
print("Dock '" .. dock_name .. "' wird umgeschaltet...")
obs.obs_frontend_set_dock_visibility(dock_name, true) -- Einschalten
obs.timer_add(function() obs.obs_frontend_set_dock_visibility(dock_name, false) end, 50) -- Direkt danach aus
end

function script_description()
return "Hotkey zum Ein-/Ausblenden des Draw-Docks"
end

function script_load(settings)
hotkey_id = obs.obs_hotkey_register_frontend("toggle_dock", "Draw-Dock umschalten", toggle_dock)
if hotkey_id == obs.OBS_INVALID_HOTKEY_ID then
print("Fehler: Hotkey konnte nicht registriert werden!")
return
end

local hotkey_save_array = obs.obs_data_get_array(settings, "toggle_dock")
obs.obs_hotkey_load(hotkey_id, hotkey_save_array)
obs.obs_data_array_release(hotkey_save_array)
print("Hotkey für '" .. dock_name .. "' erfolgreich registriert!")
end

function script_save(settings)
local hotkey_save_array = obs.obs_hotkey_save(hotkey_id)
obs.obs_data_set_array(settings, "toggle_dock", hotkey_save_array)
obs.obs_data_array_release(hotkey_save_array)
end
Exeldro
Exeldro
It does not work because it uses functions that do not exist
Cuando lo escaneo con "Virus total" y "hybrid analisys" da advertencia de virus.

Es peligroso?
Just perfect.
It works great! It is much simpler than manual image masks when you only need simple geometry, such as a circle. It even has options like feathering!
I'm currently on OBS 31.0.2 and installed Version 1.8.1 of the plugin and it keeps crashing every single time I tried to clear out the replays. If you want this plugin to work, please use OBS 30.2.3 until this gets addressed.
Exeldro
Exeldro
Please provide a crash report to allow me to investigate the issue you are experiencing
This was Exactly what i was looking for Thank You! for this Guide and the Code I would love to see how this could be turned into a Plugin instead So that you could use the Static Stream URL on Your Rumble Stream for example.

Example
"rumble.com/c/[Yourchannel]/live"

This is a Default link that will Go Straight to your Current live Stream if you could remove the rest of the Page and Only have the chat Show up then this would be Highly Cool!

Thanks again for this Guide/Post It was exactly what i wanted!
Adds functionality which I can't find anywhere else
Specifically
1-the ability to take a screenshot of a SPECIFIC source rather than the default SELECTED source
2-the ability to run command lines
Works like a charm and opens up many possibilities compared to other shader solutions. Like the face tracking or the DisplacementMap source that allows to create dynamic and textured displacements from browser sources (examples: https://www.youtube.com/watch?v=7rC4MAqAQR0 and https://www.youtube.com/watch?v=yD3BmZXWph4).
In these cases, one half of the displacement source is the actual displacement texture, the other half is a texture overlayed of top of the result.
Top