-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blur filter #1
Comments
Here's a basic blur shader, as described here:
You'll need to apply two of them to your source, one horizontal and one vertical. This is a fixed-size blur with a radius of 4 pixels, so the effect isn't very strong. You should be able to apply multiple pairs to strengthen the effect, but watch your GPU usage. I can probably put this into the next release, whenever I do that. |
Thanks. I was trying to "port" this shader to OBS Studio via your plugin, but apparently it doesnt work. |
I've been playing around with this Plugin an some blur effects, maybe this can help you:
This can of course be addapted as it is has a high GPU usage. With the original weights from the BlowserPlugin you get:
And for anybody who wants to use costum sizes and wights:
you can see the values 5 and 11 in the example above. Just replace them with your new values. |
Is there a way to enable this Blur on certain scenes only? It seems that per-scene filter settings are not possible yet with OBS itself. :/ |
For blurs, you guys may want to consider a two pass hlsl shader btw, saves on the sampling. |
Where i could find this? |
Hi! Is possible to make a source blurred with this plugin?
If yes, can you bundle a sample shader with the standard release?
Thanks a lot!
The text was updated successfully, but these errors were encountered: