#plugins-and-tools
1 messages · Page 104 of 1
Did you install the obs-websockets plugin? Most external remote control tools require it
OBS stream deck app? Can you link what you're referring to?
Looks like connectivity issues are a reoccurring theme in the reviews
IMO there are better options
!remote
If you'd like to control OBS Studio remotely, you have a few options.
To control from the web on any device (including phones and computers), use OBS Tablet Remote (requires obs-websocket).
If you'd prefer a mobile app that works like the Elgato Streamdeck, you can try Touch Portal, UP Deck, or Deckboard.
Hi guys need little help, I'm trying to integrate Agora RTC with OBS studio, getting errors. Anyone did this before ??
Hey Guys, Is there a lower thirds add on for MAC anywhere?
Is there a guide to adding an alert box anywhere? Trying to do it without using streamlabs preferably.
hey guys i have a question about the discord streamkit
i have a bug in my chat overlay that makes some of the usernames appear like this **[object, object] **
sorry if this question was asked before but i tried looking in the chat and couldn't find anything
can someone help me
that means that whatever is printing the username is actually printing an object instead of a string representation
Or you can download and use Lioranboard to not just do what other streaming decks do but a hell of a lot more besides.
Lioranboard is good but a not so user friendly UI
Touch Portal has a lot of the same functionality with better ease of use imo
And streamer.bot is pretty good too
Now i thought that in the beginning but I have gotten used to it and setting it up is easier. I use it with Streamer.bot.
Yea, I've heard if you can conquer the learning curve it's really good
i can use them for chat overlay ?
all ?
@wet valley I just use a chat overlay from Streamelements that runs across the bottom of the stream.
discord chat right ?
With a scrolling text bar at the top with important information for the viewers. No. Not Discord chat. (no one talks in there so not worth putting up) But my twitch chat.
can i adapt it for my discord chat ?
that's my issue
i host events on discord and i record them i want in the recording to be the chat and the actual people who get on stage
Why? You have a discord overlay built into discord that shows overlays the game that your viewers can see anyway.
here's the way i use it austin
here's my use
yes the problem with discord streamkit is it shows the usernames of people who type in chat as [object, object]
.
well yes, is there a way to fix it ?
Then that is an issue to take up with Discord not OBS. Have you tried Discord Overlay 1.01? https://obsproject.com/forum/resources/discord-overlay.1263/
i did some research and i found a guy in reddit who asked this same question to discord and they too said they can't help him
that's why i came here, sorry if off topic or annoying
It's always good to ask, but have you tried that link I just posted?
nope, thank you i'm downloading it right now and will give it a shot
If you want your Twitch chat to be relayed to discord and vise versa then yes, there is a Lioranboard plugin for that.
It's no problem. I seem to be doing more trouble shooting than streaming these days. Especially this time of year. Just come back from a banding engagement with the Salvation Army so just settling down before I decide what to do next. Lol.
Hi there I have a problem on OBS studio, my twitch activity doesn't show, I refreshed it and logged in and out of my twitch and reinstalled it but still nothings changed
@rocky pawn see #announcements
I've made a program in Java which counts how often I'm clicking. Currently I'm saving the number to a file and displaying the text from the file in OBS using the Text widget thing and read from file. It's not optimal.
Is there a way to display it in a better way? Can the same thing be made as an OBS plugin/script?
@proper kindle if you can use websockets, you can update any sources this way, this will require the obs-websocket plugin https://obsproject.com/forum/resources/obs-websocket-remote-control-obs-studio-from-websockets.466/
I did find this: https://github.com/obsproject/obs-websocket
So i assume i can update the value of a text component with websockets?
yes, the documentation as examples on how to change a source's properties, so you can write new text for any text source
in what way is it not optimal?
That's epic, I'll look into it, thanks
Clicking 1.5k times an hour, writing to disk at every single click. That's a lot of unnecessary writes xd
Fair
Unless you're writing to a RAM disk
just wanted to understand the nature of why it was judged to be suboptimal
M2 disk 🙃
Do you know what a RAM disk is? 😄
oh, and if you're going to be updating a text source 60 times a second, i'd recommend using freetype2 text sources instead of gdi, as those will use less CPU to update
Yes, but never made or seen one before xD
You portion off a tiny amount of RAM to use as a storage device, meaning you never write to your hard drive. You just use an app to do it.
I'll keep that in mind, thanks 😋
Yeah
(also, i was hoping to find a good APM counter and/or a clicks counter that is open-source, i hope something like this happens some day)
That's kinda what im making. What makes it good tho?
there's already "desktop apm", but it doesn't offer any visual customization, updates the APM counter only about 2 times per second, and eats too much CPU
Ah. Mine is probably gonna be worse XD
i would say it's "better than nothing" but it almost isn't
Whats holding you back from making one yourself tho? You seem competent
i, uh, only seem competent, i don't speak any programming languages
Ah 😄
@untold jay is it possible to add OBS integrations in the Multi-RTMP plugin? Like the auto twitch server selector or the new YouTube event selector, etc.
@steel walrus you can still use service integration with the "start streaming" button normally, but for any additional services after the first, you only get a basic RTMP output, no extra features
I use the multi rtmp plugin for all my streams and have YouTube as my primary service (due to the integration for chat and stream key)
But Twitch is experimenting with multiple RTMP servers in my country so I don't know which one performs when. Which is why i thought it would be a good idea if the auto server selector could be a part of the Multi-RTMP Plugin. Other than that, the plugin is perfect and amazing. Really can't see what else can be added to it. It's perfect
Running a discord overlay for a voice chat and only want speakers to pop up. Had it working for weeks now it shows everyone on the call. Any solution? Please ping
That's more suited to #stream-setup — let's go there
Thanks
Hello. Its me. I was wondering after all these tries you would like to help. To go over my issue. They say that debug-ducks are supposed to fix compiler errors, but they haven't done much fixing.
So my issue is with the Java OBS websocket library https://github.com/obs-websocket-community-projects/obs-websocket-java
My code, sorry for big copy pasta, is this:
public static void main(String[] args) {
OBSRemoteController controller = new OBSRemoteController("ws://localhost:4444", false, "patklask");
if (controller.isFailed()) { // Awaits response from OBS
// Here you can handle a failed connection request
System.out.println("Failed to connect to OBS websocket!");
System.exit(0);
}
// Now you can start making requests
controller.getSourcesList(resp -> {
if(resp == null) {
System.out.println("Response is null, rip");
return;
}
// This check is null
if(resp.getSources() == null) {
System.out.println("Sources list is null, welp");
return;
}
for(Source source : resp.getSources()) {
System.out.println("Source: " + source.getType() + " > " + source.getName());
}
});
}```
And i get null on my sources list, even tho i have plenty sources
What could be the issue?
It does connect. I do get the "Connected successfully" message
For some reason my authentication failed? I used the correct password so idk what went wrong, but removing the need for authentication fixed it. Yes, i know thats not optimal, but im the only person on my LAN so i think its alright
Streamelements is the biggest alternative to streamlabs I’m on mobile so I can’t easily scroll down to see if your question was answered but here u go anyway :)
Hi, i wonder do win-capture-audio plugin works with discord, viewed some videos about it wont work, so better i ask here?
According to it's GitHub, it won't
Hello, I have a question, do I have to activate a function in OBS so that at the end of the stream it is not heard or is this function already automatic from twitch?
So that at the end of the stream what is not heard?
By Copyright
Thanks
IS there a way (Or plug-in) That I can use to make nested source groups? (aka, put a group within a group, similar to a PC's file system)
I use a large series of character sprites for different occasions (Each is another series of sources)-- I'd like to be able to group them in some way for easier location- And to clean up my sources window
ie a "Sprites" group wich holds all of the shown groups, wich then hold their own sources?
I think the grouping of groups is a no go due to some sort of redundancy or something along those lines. However there is a bounty for better organizational setup. I forget if it's in progress or nearly done.
Is there an easy way to test/hear audio plugins? As far as I know, the effects applied are only heard by viewers. I can record video clips & listen back to the audio but this will be very tedious.
Maybe the audio monitor plugin? But it may be pre filter.
If that's the case, you might want the music edition for as I think it allows monitoring of master mix
@vale vine oof, lots of bad reviews for instability but I'll check it out, I can remove it later.
could anyone point me at what in the Graphics API I should use to draw lines/pixels?
I want to create a line chart
I have no idea how to do that, but an alternative solution is to draw the line chart as an image which is shown on stream and updates on file change
You could put all of those groups into a separate scene, then add that scene as a source.
If you go into advanced audio properties (right click on the mixer and choose it from there) you can change the monitoring options for individual sources there.
Thanks!
No problem. Remember to set them back before you stream or your stream will have an echo.
Yes, my speakers do a good job of letting me know I've left things on 😂😂😂
OBS Studio for macOS requires a second program to help it capture desktop audio, due to Apple not providing direct audio capture functionality
Click here for a guide using BlackHole (Recommended)
Click here for a guide using iShowU
A mix of using Virtual Audio Cable and Voicemeeter may be able to do it, but I'm not sure
Good to hear you found a solution, and thanks for sharing it 👍
Loopback is awesome. Expensive but awesome
You really get what you pay for, an absence of headaches 😁
Those are Windows tools 😄
Is it possible to make a plugin that adds a command to the context menu that shows up when you right click a source or scene? Please ping me for answers, I'm off to bed. Thanks.
@regal breach i think that's a no, or at least i don't know of any plugins that have been able to do that
I reckon the context menu's a bit busy as it is without plugins adding stuff to it 😄
Wdym add a command?
Add a menu item to the context menu, I presume they mean
Well, for a cheaper (but still not free) solution, there's Sound Siphon. Basically the same thing, much much cheaper.
When it comes to free solutions, there's really only these two:
!macaudio
OBS Studio for macOS requires a second program to help it capture desktop audio, due to Apple not providing direct audio capture functionality
Click here for a guide using BlackHole (Recommended)
Click here for a guide using iShowU
But if it is a solution I'd still consider it a valid answer 😋
What I've done with my audio is default all audio to "Random device 1" and sort out some audio to "Random device 2". Then i use Voicemeeter to merge Random device 1&2 into my headset, and then i can pick what audio goes into OBS by not having my headset as a source, but only the random devices which i send audio to
Something similar to that. My own setup confuses me, so i hope it never breaks
Yep, and practically the same thing :-)
Mac streaming isn't that hard, really. It's just that 99% of the resources you find out there are Windows-related. But once you figure it out, you don't need to figure anything out again :D
you bought it, and then bought a bunch of adapters, it makes a lot of sense to them, as they get a lot of money from you
What bunch of adapters? You need one multi-port hub if anything. The MacBook Airs lack ports because it's supposed to be portable; the MacBook Pro has all the ports; the Mac mini and iMac also have all the ports
But anyway, that's more #tech-talk than anything
laptops can be portable and have a bunch of ports, look at nearly any laptop not made by apple
USB-C to USB-A
That's what these are for
or similar. My husband has a different brand one, but same diff.
But again, this is more of a #tech-talk discussion. Let's move it there.
(or drop it, either is fine — it's just off-topic for this channel, that's all)
Good evening, I bought Streamlabs pro which allows multistream. I was interested in putting multi chat on OBS. I want to avoid using streamlabs. How can I put the multi chat on obs (that of streamlabs pro)? A thousand thanks
I believe Streamelements has multi-service chat box
Otherwise there's restream chat — you don't need to actually stream with Restream to use it, just to connect whatever accounts
Can't recover that of StreamLabs Pro? I'm basically paying for a service and it annoys me to link my account on other platforms
You'd need to ask Streamlabs if their products are usable outside of their fork.
I would wager that from a technical standpoint, it's possible, but I have no idea if they let you do it or not.
We don't typically get involved with their offerings.
I mean, I can't see why you'd pay for a premium service just to avoid using the software that the service expects/requires. 🤷♂️
(unless it's to avoid SLOBS' CPU usage or so on — when people say they don't want to use Streamlabs, I assume they mean the entire suite of products including the online services)
Anyone use StreamFX (https://github.com/Xaymar/obs-StreamFX/releases)? Interested in it for the Corner pin for video. Was curious who all has tried it and the latest version 0.11.0 Beta 3 (Testing).
Okay, thank you!
While I do agree with that, I'm thinking of adding an "Add scene to other scenes" command and another that adds it only to scenes that don't have that scene yet (no idea what name I should give that one). Would make global scenes/nested scenes much more convenient. Without the ability to add a context menu item, alternatives don't seem to be appropriate, even though it is possible, like a video filter that doesn't do anything but adds a button or just watches the scenes or something.
What about a menu item and accompanying UI for that in the Tools menu? That's something that is currently possible for a plugin to do.
Can you elaborate a little more?
Hmmm. Is the UI in tools menu gonna be similar to the UI in scripts? Like seeing properties defined
I mean, take a look at the UIs that plugins already make, like Websocket, NDI, etc.
StreamFX even makes its own menu
Yeah I think I can see that
But kinda wondering how I should design the UI hahaha
Thanks for your help
Hi is there anyone who knows how to stream on a specific time with OBS? For example, i want to stream a video on 10:30 til 12:00 am and 14:00 til 15:30 pm
Hello! I was wondering if anyone knows if there is a way to split audio in OBS on Linux? I know there is a plugin on Windows that does wonders, but sadly it's not supported here on Linux. Does anyone know if it is possible here on Linux? I want to for example split my game audio and my mic audio and also have discord and music separated as well.
I think pipewire and pulseaudio can do that natively but I have no idea how to setup this stuff (I dont use desktop linux myself)
Hmm
Can I somehow get Shoutcast/Icecast ICY title information from a "video" source into Tuna?
and/or is there another way to play an MP3 radio stream and display title information?
the video source plays fine, but Tuna can't get title info
Hi, this is the right channel for help with plugins too, right?
yea
I am looking for universal#8427 for help with their input overlay plugin, since it's on their github page that I could be able to find them here, but I am not able to find them on the mention list
Are they here? The 5.0.0 isn't working for me
it does say pre/test release 😅 Are you sure you dont want to try the stable?
I'm trying to update due to the way the plugin handles the input files
In older versions it handles them in .ini and are pretty cryptic, I've been 2 hours tweaking one to make one that meets my needs but all I got is wrong layouts and obs crashes
The new version handles them through a .json, more readable and also with an online tool that makes creating these overlays way easier and visual
I see. Thats unfortunate 😦
I'm afraid the best bet might be to reach out on the community page
https://obsproject.com/forum/threads/input-overlay.72759/page-34
they have some contact point on their site, but im not sure thats really where they want support/bug submissions
nothing to be sorry about 🙂 Completely relevant reason to ask
You could get lucky that someone who has experience with the latest beta/test reaches out to you in this channel still. Unfortunately I can't do much for you at least 😅
huh, I actually see them in the list 😅 hopefully they'll swing by at some point
oh
@boreal hearth
Hi, I'm having a bit of a trouble updating the input-overlay plugin from 4.7.4 to 5.0.0.
When I update, the input overlay option dissapears, as so do my overlays, as if the plugin wasn't present.
I hope I'm not taking much time from you by asking about this, I didn't find any issues page about this on the github page.
The reason I'm trying to update is to be able to more conveniently edit my presets to something that fits my needs, as the .ini files were pretty cryptic and trying to edit them only resulted in wrong layouts and my obs crashing.
Thanks in advance.
I'm using OBS 26.1.1, which I forgot to mention before
Does anyone know of a plugin that does NOT automatically have its property window displayed when it is added to a scene? If so, I'm interested in looking at the code. Thanks.
Have a look at the Dell DA310.
I don't think OBS is like a phone; it's good on it's own, you don't need anything extra because the base system has no user-facing features. Plugins generally only get used to solve specific problems when they actually arise, and even then, it's very rare.
!chatdocks
To enable Chat docks for Twitch, Restream and YouTube, you will need to connect your account via Settings -> Stream.
If you'd like to enable chat docks for other services, you can use View -> Docks -> Custom Browser Docks. This allows you to include any webpage in OBS.
^ once logged in, past alerts are in View -> Docks -> Twitch Activity Feed
Ah you're logged in via Restream rather than Twitch
Add a "Custom Browser Dock" pointed to https://dashboard.twitch.tv/popout/stream-manager/activity-feed
that'll give you a dock of recent follows & stuff
And if you're using Restream, you can use their chat embed (go to the restream website to get it) to show multiple services' chat on your stream
for alerts, you have to use an alert provider such as streamelements or rainmaker
Yeah I would think pulseaudio and pipewire can do it as well, just doesn't seem like there is a way of "catching them" if that makes sense 😂 But thanks, I will have to keep looking
For every plugin I install I don't see it on my OBS, I installed the most recent visual c++ redestributable for visual studio, this is for every plugin i've tried and im not quite sure what to do
any help? would definitely appreciate it
Where are you saving the plugins youre trying to install?
i've tried in the obs folder, the recommended one on the website and just my downloads
@proper kindle
maybe i can retry it again
And you did restart OBS afterwards?
yes @proper kindle
This is my OBS installation folder
This is a plugin download
You did move all the files and not just the "obs-plugins" right ?
i copied the files and placed them in my obs plugins so it possibly could work now!
im about to check
Did it work ?
Nope it didn't :/ @proper kindle
Are you on Windows? Is the plugin supported on the platform youre on? Im pretty much out of guesses
Yes im on windows, and pc is 64 bit system @proper kindle i appreciate the help! I'll probably get at it tomorrow ❤️
👍
You need obs studio 27
Thanks, I updated and it's now working
However, the mouse overlay with movement from the presets now doesn't put the arrow where it should be.
I tried with the texture on the preset and also with one I edited to be a different color, and depending on which image I'm using the arrow is in a different place.
First is the original texture, second is the one i changed colors to.
Hope I'm not taking much time from you once more, and thanks for answering.
I'm not really sure why the arrow isn't positioned correctly
I'll try and take a look at it when I get the chance
I often use this mouse overlay ... as well as other players I play with. The arrow is never positioned correctly. Impossible to achieve it.
it is possible, it worked just fine in the previous version but I guess something broke
Yeah, pretty much
Thanks, and sorry for bothering
I hope it doesn't take too much time to find the problem
how do i setup my ipohone 5s to work a a webcam my other camera is casuign lagg issues with ym nviodia 970 encoder during game play only
Answered in #stream-setup
What plugins and tools do people recommend for a new streamer
None. OBS has all you need out of the box 😄
Add plugins when you come across something you need to add to your scenes that can't be done
Ahh fair enough i hope i set obs up correctly
If you get stuck with a techincal issue, ask in a support channel. But if you want help to set up your layouts so your streams look fancy, ask in #stream-setup :-)
I will thank you
Can anyone recommend a good sub goal plug-in? I use streamelements but they dont have an option to exclude re-rubs from counting and it can get annoying having to edit the sub progress when that happens or when a sub runs out.
having issue with source record plugin. The filter keeps recording ALL sources instead of just the source it is applied to. Any suggestions?
hi everyone, I new here and my inglish is not the best, i whan to ask, if you know about video tutorial we teach how to instal a plugin in obs ? if you know about one i am really apreciared ❤️ 🛐
What plugin?
Download the plugin exe or dmg file, double click the it, then install.
Source Record. Recording multiple cameras saved to individual files. If you need to record multiple cameras and save each to a different file for later editing, look at the Source Record plugin. I use this on my iMac. It works. Its ability to start recording subject to multiple triggers, e.g. it records Always; or when you click Streaming; or Recording; or Streaming or Recording; or Virtual Camera is exceptionally useful.
any of you familar with obs ninja and no why my phone ninja stream into my obs looks like this
it sometimes works
all the settings are right refreche the cache when scene becomes active 1029 by 1080 my pixel 4a is plugged in and charging and its video appears normal
but on my pc it looks like that
Does your OBS browser show the problem picture? Or OBS.ninja client got some wrong?
Which page exists the problem? The left guest join page, or the right capture a group scene page?
the browser source shows the problem but the obs ninga on the phone shows the picture fine
its somewhere in the trasfer that its messing up like that is what the stream would see if i used that browser source in obs
but it looks fine on the little view on the phone
and it seems to be time sensitive a little if i leave it and dont mess with it sometimes the picture fixes it self till i change screens and stuff
i can share screen sometime tommorow if you want to take a look at it
Got it. If you open the browser source url, the right "CAPTURE A GROUP SCENE" url, does it OK?
Open the browser url in your Chrome on PC, like Windows or Mac?
oh sorry im using the reussable invite thing not the group thing
and it has a view link and an invite link
i pull the invite up on my phone and the view link in a browser source in obs
Er, maybe you could try the group scene url? It says "Use in OBS studio"...
This is the thing im using
Just for a single cam not a group call
It's the create reusable invite option not the other kind
Got it, you use the "Add your Camera to OBS",
Yup
This is working right
this is the source in obs
and all of this was working fine at somepoint my phones on wifi has perfect signal
If you open the view url in your PC chrome, does it work?
also obs on my phone if i try to change the camera between front and back it says one is being used when it isnt and wont select it
yes
I try the "Add your Camera to OBS" on my iPhoneSE2, neither Safari nor Chrome worked, maybe only work for Andriod phone? Is your phone Android Chrome? 😆
yeah its google pixel
I mean open this url in your PC Chrome, to test whether the stream is OK.
So it seems the problem for OBS browser...
so its working in my browser just not in obs
All of this seems so much more complicated than using Epoccam
Yep, hard time.😂
it was working its just now not lol
So, what's your OBS version? And your PC is Mac?
so obs broser just cant use obs ninja or or is it just my obs browser source lol
21.9.27 .783 powered by stream elements
27.13 at the top left
Sorry, I can't fix this, because I'm not developer for obs.ninja, I'm a server-side WebRTC programmer. But I think it's definitely the problem of adaption between OBS browser and WebRTC, hope you lucky to get help from someone else. 🙂
so do you think its all obs ninja stuff is broken right now
I do not think so, hahaha, I think it's because the complexity of WebRTC ... something really really complex.
Streamelements‘ Plugin replaces the default browser with their own, which might cause issues. Try uninstalling Streamelements and check again
!se
To cleanly remove OBS.Live:
- Uninstall OBS.Live
- Uninstall OBS Studio (make sure that "User Settings" is not selected)
- Install OBS Studio again from https://obsproject.com/
Your settings will be saved unless you have selected to delete them during removal.
Nice, maybe try original OBS is OK.
cool ill try that i think it was having the problems before i added that im not even using it right now to be honest
Please try it and let me know, I also use some WebRTC tools to do my live streaming, every Saturday. 😀
yee its a good tool ive thought about what it could do alot right now i was trying to figure out how to route my audio over to the phone just to have a second wireless output but i need more virtual cables to do that and im using all five voice meter has to offer
like if a person beside me wanted to be able to listen to discord convos and talk themselves i can pipe audio to them pull the phones input from obs ninja and stuff
Don't unzip it there
Unzip elsewhere, then manually copy the files across
Otherwise you'll have permissions issues
hello, I kinda had a problem with the plugin source dock, and got myself out of the situation.
the minimum requirement of source dock was written 27.0.0, and it didn't workout... I couldn't find it in "Tools"
I tried removing streamelements and restarting my PC and stuff, but it worked when I updated OBS to 27.1.3
probably just a reminder if anyone have the same situation.....?
😆
A current log file is required to help fix your issue. Please post a link to your current log file.
- In OBS select Help > Log Files > Upload Current Log File.
- Click Copy URL and then paste the link here.
oh, you're saying you already fixed it? 😅 Just posting as advice to others?
yeah, I don't know if it's a bug or something, but updating OBS to 27.1.3 makes it work
don't really know what is the cause, so won't really say "fix", but it works LUL
Since version 0.1.4 of source dock OBS version 27.1 or higher is required, but that is not an option to set on the OBS resource page so that is why that is showing 27.0.0 as minimum OBS Studio version
Bonjour, besoin d un pluging pour afficher le nombre d'utilisateur en ligne (RTMP)
Welcome to the official OBS Community Discord server! Unfortunately, our support volunteers can only provide support in English. Most of our support documents and guides are also only in English. If you feel comfortable using a service like Google Translate, feel free to use that to send messages to us. We'll do our best to understand your intent, and we'll try to help you as much as we can.
Translate
Hello, I need a plugin to display the number of users online (RTMP)
what you want to do is add a RTMP stream as a source?
like a stream viewer
because you don't need a plugin for that, add a media source, unckeck the "local file"
there are viewer counts, depending on which platform you are on
do yo have the ling to download it
your plugins are really god-like tier, I really appreciate them
which platform?
on my website
and usually those are browser source
not on youtube and facebook
OBS cannot help you here, this is something your streaming backend must provide
then you might have to ask others, I am no expert in those stuff
ok thx
can you describe what exactly you're trying to do?
you're streaming on a RTMP is what I get?
and you basically want the viewer count of the RTMP?
Would anyone here know why my source record filter is recording all sources, not just the one its applied to?
did you add the filter to a scene by accident?
Sounds like they trying to pull a video or livestream from their personal website, and embed into their live broadcast - I think there's something like "RTMP Pull" or something like that they can do easy enough to make that possible
if it's that, you don't even need a plugin, it's builtin
i use nginx + obs to stream on my website, now i want to show how many viewer on my page
yeah, that's what I though
basically : that's complex.
The complexity doesn't come from integrating the count to your stream, but from actually getting a viewer count from your website
something like this
yeah, I get what you mean
the problem is that, as far as I know, there is no cookie-cutter way to measure the number of viewers on any website
you'd have to actually code yourself a way for your website to measure how many viewers are on it (probably best way to use that would be using google analytics)
once you have that measure, it's quite easy to integrate it to your stream, best way would probably be through a browser source.
I will have to double check when I get home for lunch, but shouldn't be. I have my scene called 1440p then in that scene i have 3 sources. Alerts, Webcam, and Main PC (capture card). I have the filter set up on Main PC to get just a non overlayed game footage but it still shows the webcam and alerts
what's the condition to your recording? is it set to source recording while OBS is recording?
Source record while streaming
If you need help or have questions about OBS, check out our #support-portal first!
i have my facebook linked but it wont update chat while i am live or notifications , please help me !
@crisp veldt development-related questions can go to #development, this channel is mostly about discovering and using plugins
a
I need help assigning a hotkey (I'm very new to OBS so sorry if this sounds like a dumb question
Hotkey to do what?
If for turning on/off filters, you will need to install a script
For everything else it's pretty straightforward. Settings > hotkeys.
So I need to make a hotkey for toffling the "deactivate device when not showing" on and off and I don't see it anywhere in the hotkey tab under settings\
Show/hide for that source
oh i see i see
How do I make a photo as a background in a scene? I added a photo but it is overtop of my capture card source, been trying to drag it to be behind the capture card but it's always up front
click on the source in the source list then use the down arrow here to move it down the list so that it's under the video capture card source in the list
pleasure
hi I have a question regarding the new multi stream plug in?
ask the question, if someone can answer they will
I've worked out how to set streaming to YT, Twitch & FB but it seems that the chat messages don't link up from all 3 of the platforms. was wondering if there's a way do within the plug in or in OBS itself?
Do you want to capture all chat messages(YT, Twitch & FB) to the stream, and all users can see it?
yes exactly
Hahaha, you can use the OBS browser to open all these chat URL, or use view/Docks to do this, where the URL is copy from "Pop out" from these platforms.
Like this "Pop out" URL of Twitch, you can open it by OBS browser Source.
Ah i get what you mean, but wouldn't doing that mean I'll have to show 3 different chat boxes on stream?
yes, but you can't have one unified chat box for three different platforms
at least not that I know of
Streamlabs has it within their app haha so I was wondering if OBS has the same function or workaround
Plenty of platforms have unified chat boxes
I get mine through Botisimo, restream.io also has it, and I believe Streamelements also has it
@strong tulip ok I'll check those out thank you!
You could create three OBS browser sources, each source open a special URL, for example, one for twitch, one for YT, one for VB, hahaha. All users will see all the chats from other platforms. Do it make sense?
Why are y'all making it more complicated than it needs to be, multi-chat is a standard feature of overlay services
That or a chat relay, usually offered by the same service, then just capture one — it'll have messages from all 3 anyway
Got it, it's a better solution to use overlay services, thanks 👍
I have a question partially related to Exeldro's replay source plugin, in regard to a high-framerate buffer specifically on linux. I've had great results, on Windows, using the Video Capture Device with replay buffer source that is included with the plugin. I capture a 120fps feed with that source, allowing me to show a 50% speed replay that is true 60fps; that is the purpose of that source, after all. I am working on migrating my production environment to Linux, and this is one of the final pieces that I still need to figure out on linux. The aforementioned source is exclusive to Windows, as it uses Directshow. Does anyone know if there is an existing similar solution for linux?
To clarify, the replay source plugin itself does work in linux, but, I believe OBS ingests the v4l2 capture source at the streamed/recorded framerate rather than the source framerate, and if so, the plugin would not be suitable for my use-case. Perhaps I'm mistaken about this (hopefully).
Maybe there's interest in modifying the Video Capture Device with replay buffer source to use gstreamer so it can be platform-independent. Unfortunately, I will not be able to contribute to such a thing, if it's even possible.
@last lodge The best solution I've tried for combing chat into a single window is https://chat.aircast.app/ - If your intention is to show it in the stream, rather than just docking it for personal viewing, you'll want to use CSS to remove/hide all background elements
Self-advertisement or advertisement for others is not allowed on this server unless it's directly relevant to a discussion or question. Please read the rules in the #rules channel.
my mic ain't workin
hello dears please i need help to fined a developer to help me to do a plugins for obs how i can find them and i need urgently ASAP i will appreciate any one can help me thank you all of you
Can anyone ELI5 the Move Source filter - order function for me. I cant figure out how to make it work as I thought it would be able to. I want it to change position of two sources, so it looks good in a certain scene, but they dont seem to be moving.
The order part of move source is to make it change layer on the scene. To make source move with move source I suggest following 1 of the many YouTube tutorials
ive been using the application audio output plugin for a while but is there a way that i can add an application output that will capture any game so i dont need to add it one by one
im trying to seperate my discord and spotify but they come through my desktop audio as i expected
Thanks Exeldro! Got it working now. 🙂
Self-advertisement or advertisement for others is not allowed on this server unless it's directly relevant to a discussion or question. Please read the rules in the #rules channel.
Hello! Where would I go to be able to ask about overlay issues? I'm trying to convert from Streamlabs over to OBS proper
Hey there! Can someone please help me, how to use this plugin? https://obsproject.com/forum/resources/image-reaction.1342/
I cannot find it in sources or filters or anywhere else
probably #stream-setup
Is this the last version of StreamFx available?
@vernal vapor https://github.com/Xaymar/obs-StreamFX/releases/latest will always redirect you to the latest version
thanks
So, I'm doing some tests now, I will try to record my desktop in 8k
I would like you to give me some help to configure the obs to record in 8k
this options:
I'm asking help here because I'm using StreamFx
I normally use the simple output mode, but to record above 4096x4096 I need the H265, and I only get that in the advanced output
These other options are tricky for my level of knowledge.
Some friends here on the server had already helped me before, I was able to record a game in 4k for the first time.
I'm doing these tests to find out the limits of my hardware and software, I wanted to do a test with resolutions above 4k now, starting with the desktop, then I'll test it on some olds games that I can make it work at that resolution.
StreamFX has their own discord for help with their plugin.
We can't support their encoding stuff here, unfortunately.
You'll need to reach out there.
what is the apropriated channel to me asking help?
If you are looking for more information or support for the StreamFX plugin, please visit the forum resource page.
they have a discord channel or just a forum?
They have a whole separate discord server, the link is on that page.
thank you my friend, I will ask helpe there
Who here is good with NDI and Windows?
Please state your issue and wait for someone who can answer it.
Ooh, cool. End goal is to get Zoom happening in OBS. Current attempt is using NDI for video from Win10 running Zoom and NDI, but NDI is just color bars. What setting am I missing?
is this a dual PC setup?
Multiple. I am hoping to dedicate a separate Win10 box to a different interface (zoom/GoogleMeet, et al)
I stole a radio station.
where's your input? NDI is like a cable where you have to feed something in one end, to receive it in the other end
HUH? NaNi!?
Then I am already totally lost. That CPU is running using zoom with audio going through a USB interface (to wire into the audio console) and video is the participant(s)
I am good with real, physical copper cables, though
lol
does it also use OBS?
No sir, just Zoom and NDI (was the plan) OBS is on a Mac.
I have 14 macs, but i only need one for this gig.
(Been collecting them since before color Macs were released)
WTH
4 G3s were my DSS video stream servers)
https://support.zoom.us/hc/en-us/articles/360061903532-Using-Network-Device-Interface-NDI- is this what you're trying to do? and you have followed the steps here?
I hit a different article and will read this now.
Beyond insane
Yeah, this is totally different from previous research. This gwanna be a minute.
In Community>tech-talk for more info
just to make it clear, this one uses Zoom Rooms, not regular Zoom meetings
Yeah, that’s where I break from it. I was going to use a separate box for each participant.
I wanted to just grab the screen, really, like I use the HX on the iOS and other Macs, which seem to work rather seamlessly
It’s how i get weather maps on my stream.
can you link to the article you saw?
digs through ridiculous browser history…..
https://youtu.be/LhEjMW299MU was one
YouTube University UnderGraduate
you wanted to grab the screen of the Mac?
Does the Win10 version of NDI have a simple screen grab thing like NDI HX Capture?
I want to grab Win10 screens
sorry, I haven't used NDI much to find other software, but this is doable with OBS
just capture the screen or window with OBS and enable ndi
!ndi
OBS Studio has an NDI plugin available, which can be found here: https://obsproject.com/forum/resources/528/
and on the receiving computer, add an NDI source
Every machine would require OBS?
depends on your setup really. You'd basically want to use it only for ones that will send data, and ones that will receive the data. Though for receiving data, you can also use other apps if you already have them.
(4 of the Win10 boxes will be for Skype/Zoom/GoogleMeets, etc)
All 9 CPUs are on one network
I can explain more in the tech-talk room
but it's pretty much the same as using OBS on the other pc, though I guess it could be less load
That’s the part I can’t get to work. I am NOT a Win10 guy. (Mac and Linux are superior in so many ways)
the upside of using OBS to throw data is that you can already crop and stuff to clean your feed before it gets received by others
But, due to the apps, the support and the accounts I’m kind of stuck. Well, that and all they had were Win10 boxes when I stole it all.
Downloaded and installed.
you literally stole them?
Settings have me madder than a wet hen.
Yep. I am/was the engineer of a radio station. When the station lost the least on the transmitter, everyone else just dropped off the earth. So, i decided to pirate radio this thing and took ALL the gear home and plugged it in.
ah okay
Added some of my own high-end rock-n-roll equipment from my touring days and voîla! I have a radio station of sorts in my garage. Boss is still trying to negotiate some sort deal with me.
My role would be really as button-puncher (like my TD gig at NBC)
OBS would not be a participant in the meeting.
In any case, after you've set up your NDI in the server PCs, you can just receive them on OBS by adding an NDI source
That’s what I thought, but all I get are color bars in OBS
well, did you already set up ndi in the server PCs
you have to turn it on
and use the app to capture the screen
I think it is
you sure it's running?
well in OBS, in the NDI source properties, change the source/address
try to find your ndi feed
I found it in the drop-down list
So, the NDI is happening. The ScreenCapture app is running.
so, we're good now?
For now. Still not sure what the issue is as the result in OBS is colorbars
You've selected the correct one in OBS already?
I think so
Then now you have to fix your firewall settings
I think its the Win10 options I’m misunderstanding. On the mac side there’s 2 different apps, one for the camera and one for the screen. This seems to have both in one
It’s trying to mirror the webcam, not the screen
Well, this is really frustrating.
Uh, oh
I think I found the caveat: only one of the CPUs has a monitor attached.
We've open sourced a neat little applet we created that triggers a hotkey when your mouse cursor moves between monitors. The intent behind creating this was to solve the problem of being a developer with multiple monitors and trying to stream... chat enjoys being along for the ride, so take them with you as you browse documentation on one screen, then return to write code in another. In the example gif, I have the keybinds trigger scene transitions in OBS. Not sure if anyone will find this useful, but I'll try to upload a video of how to fully set it up. Currently only supports Windows by default, but Mac users in the meantime can just run the .jar file in the releases section. Hope you find it useful 
is obs completely free?
OBS Studio is completely, 100% free. You don't have to pay for it at all. It is a great, high quality program that excels at both streaming and recording. OBS Studio is guaranteed to be completely virus and malware free, as long as you download them from the official website at https://obsproject.com/download
ok
i'm trying to install multiple replay buffers from this github and i'm completely lost, any thoughts?
https://obsproject.com/forum/resources/additional-replay-buffer.812/
Does the idea of a VS Code extension that switches to your overlay screen when opening sensitive files like .env, etc. based on a file list regex in the plugin config sound like something cool? When you close the sensitive file / change tabs, it would auto-swap back to the display capture screen...
Apologies for creating really niche plugins / tools, but as someone that is known as "leakn' geeken" I would personally find this useful 
Could take it a step further and extend this same functionality to Chrome for websites like email, banks, etc. It would act as a "Streamer Mode" for your browser.
That would be cool, actually. But would it be able to happen quickly enough?
I've actually never written a VSCode ext. before, but it's basically just NodeJS. I would assume it would depend on how fast the event triggers
The VSCode ext. would act more as a fail-safe
The Chrome ext. would very likely be able to switch the scene before the page loads
The Chrome ext. would also be more of a must have for every creator. May work on it first, and put the VSCode ext. 2nd.
The only sad part is that I will likely have to rely on the OBS Websockets plugin that most won't install. Every creator would be willing to click install on a chrome ext. But getting them to install an OBS Plugin would likely be like pulling teeth
I'll work on a proof of concept first, and maybe it will get popular enough to become a native feature within OBS
Like, it'd only really be useful if you can detect events for changing the tab, firing off the request to OBS, and delaying the tab change for a certain length of time
I don't know if that's possible in VSCode
do I need to compile OBS when making a plugin?
technically you can use a precompiled libobs but it's usually easier to do an in-tree build
do i drop the .c files of the plugin I would be creating in the plugins folder and then compile? if there's even a barebones guide on basic plugin compilation, I would appreciate it, as I haven't worked with cmake yet
!plugintemplate
A template for new OBS plugins including boilerplate code and CI scripts can be found at https://github.com/obsproject/obs-plugintemplate
Thank you!
@regal breach are you a c dev?
nope
hi
hmm the template seems to be quite broken
even after correcting the file paths it gets canceled somehow
the CI stuff on the plugin template is indeed very old and broken, I wouldn't bother with it.
It's on our list to update.
We're making a lot of changes to how we build/deploy OBS right now though, so those have taken priority.
yeah i was making the plugin manually then since i hadnt used cmake in years i went here for help and then i found "template" and i felt super stupid and now i kinda of figured it out
obs-websocket is scheduled to be bundled by default with OBS 28
27.2 will make it optional, but 28 onward will come with OBS
What does the websocket plugin do
In theory, would it be possible to create a script that acts like a 'record' button, that creates a temporary name for all recorded videos created.
Ex.
Unpressed: Recording works normal
Pressed: (a) creates a prompt asking for name of file (b) appends entered value from prompt to the end of the file (c) all files thereafter have the same appended file
Unpressed again: Returns to normal

Thank you for sharing that. This will be huge for us and open a ton of possibilities. 
scripts can't currently create things like user interface, you'd probably have to make an actual plugin for something like that
I could probably add text entry prompts or something at some point
To show your keyboard pressed and events on your stream?
@glacial fiber will you be disappointed to find out that the "advanced scene switcher" plugin had this feature already?
Chiyo woke up and choose violence today.
lol
Whats the difference between these 2 virtual camera plug ins? https://obsproject.com/forum/resources/obs-virtualcam.539/
and
https://obsproject.com/forum/resources/obs-virtualcam.949/
@flat steppe the newer one is updated for changes made in v24 or v25, the older one only runs on older obs-studio versions
the newer one is the one made by fenrir right?
@flat steppe the modified binary release was published by Fenrir, not sure who made the necessary changes, might have been more than one person
ok cool btw whats the differencce between vst2 and vst3 plguins? all i got from them is that vst works when audio either is or isnt coming through while vst3 only works when audio is comign through
@flat steppe some vst plugins are only available as vst3, some only as vst2, obs studio music edition supports vst3 if you need that
I think it's Input Overlay plugin and need to create custom overlay image.
https://obsproject.com/forum/resources/input-overlay.552/
I am having issues with the Audio monitor plugin. I installed it like three times but it isnt showing up in the filters even after restarting obs
A current log file is required to help fix your issue. Please post a link to your current log file.
- In OBS select Help > Log Files > Upload Current Log File.
- Click Copy URL and then paste the link here.
- Old Version (26.0.2)
- Integrated GPU
- Insufficient Hardware
- Windows 10 21H1 (OK)
- Not Admin
- No Output Session
Intel Core i3-3217U @ 1.80GHz - Below minimum requirements / Intel HD 4000 - Below minimum requirements
yeah def
yee, start by upgrading to current version
secondly, how did you install that plugin?
upgrading to current version probs won't fix this, but it's always good
nvm it did lol
ok, perfect lmao
Self-advertisement or advertisement for others is not allowed on this server unless it's directly relevant to a discussion or question. Please read the rules in the #rules channel.
yo i want to help whit obs studio
If you need help or have questions about OBS, check out our #support-portal first!
Hello I am trying to do a little obs plugin, I am trying to convert speech from an audio source to text. Anyone already tried this ? I found https://github.com/ratwithacompiler/OBS-captions-plugin but it's to complicate I am a bit lost. I only need the text from a given source as a string. Using the google speech-to-text api if possible.
If I could already record like 10 second from a source and export this as .wav or mp3 and then send it to google manually would be great.
hmm i don't know what the api supports but what i would do is:
It's worth noting that that plugin uses an undocumented API for speech to Text that's supposed to be reserved for Chrome, and using the official Google Cloud Speech-to-Text API will likely cost you money
encode the live audio in opus as it's very light, send the live audio to the api, it returns text and you copy the text source for that
and also
add delay to counter the api latency
what are you trying to do with the text? since you mentioned just recording a 10 sec wav/mp3 and sending it to the google API which wouldnt really need OBS then?
Ok I will try to encode to opus
Is 100mbps ethernet on my streaming PC and 1gig on the gaming one enough for NDI?
Use of the plugin is 100% free
I've been using it
And haven't had to pay anything
That's not what I said
My bad, read something different
I known another solution, to use OBS browser to open a url, which pull the text from a service, which covert the text from RTMP stream. But I did not try that(maybe next month I will do this), just a possible solution.
are there any tools or extensions or anything that like, slideshow stuff? more than just pictures. i want a section up top of my screen to switch between subs and bits and follows displayer to text saying which games ive beaten on a Guitar Hero controller.
I want to know what the person is saying during streaming to catch certain word.
the mp3 wav was a simple example, to be fair I have no idea how to encode obs audio. I saw in the doc the obs_encoder_t, I will see what I can do with that
No, you need 1gbps on both to properly use NDI at HD resolutions
1080p60 needs about 250mbps
i mean you should get gigabit on both anyway since it costs so little theres no reason not to get it
hmm is it normal for an async video source that doesn't output any frames to segfault or am i doing something wrong?
when i click the "add source +" button
@craggy compass and I have trouble encoding to opus. Does anyone here succeed doing that ?
I do not know it this is the right channel to ask stuff
But I was wondering is there a plugin to make all the audio separate? I want to stream and listen to music but I don't want the stream to hear the music
Anyone know a plugin/fix for that?
To capture audio from selected applications only, similar to Discord, you can try the new OBS audio capture plugin (Windows 10 2004 and above only)
Hi everyone, I would need a hand. I installed the audio cables of the VB audio and through obs studio, I would like to send what I hear in the headphones (for example from discord) broadcast on my live shows. I captured an audio source telling it to take the audio from my headphones, and with the monitor audio plug in, I told it to send it to the virtual cable. Everything works, but in the advanced options of the obs audio mixer, the audio source (ie my headphones) is not active, therefore I cannot send it to track 1 and not to track two. Why does obs give me that the audio track is not active? Thanks in advance.
Hey!
I am having a problem with the replay source... The replay is ok, but when i save them the replays are green
hi
hi 🙂
If you need help or have questions about OBS, check out our #support-portal first!
Hello there, i'm attempting to record only audio from obs into a .wav file with my custom plugin. It is actually not working as expected, my .wav are just completly messed up. I think my problem is in the way i write the audio bytes. Does someone already tried to do that ? Or is there a plugin which i can inspired ? Thanks by advance.
@cyan peak That would be fantastic (text entry prompts). I'll look into plugins for the time being, thank you for the quick reply
I require a plugin for OBS which would link the volume levels of sources.
I imagine it would be a filter attached to a source, the filter would let you assign a group. All sources with the filter in group 'x' have the same volume, so if you change one member's volume all others follow suit.
Bonus features, would let you set the volumes independent from one another and then adjusted relative to a master source. ie. Source VOL Master 100% - subsource a = 85%, b=35%, c=65%. If you turned Master down, it would dial a,b,c down relative to their position. Turning master back up to 100% would have a,b,c at 85/35/65 respectively.
If you are able to make this plugin then DM to discuss please
Do obs studios live stream can pause?
Hello I'm using audio visualizer and I was wondering if anyone knew how to get rid of this white box. Also the visualizer is picking up more sound then I wanted it to, I only wanted it to hear my voice
Create a scene for when you’re away. Otherwise, no, you just end the stream
are there any plugins out there than can switch/make & delete scenes or sources when a specific application is opened? for example if i open a browser i want to use one source but if i open discord i want to switch to a different source
That's built in, check Tools menu -> Automatic Scene Switcher
i had no idea, thanks!
np
Hey y'all, I'm looking for a way to control my streaming PC's OBS through my gaming PC, preferably through an OBS plugin. I found this one, but it has not been updated in a long time. Should I just use this, or is there a better way to achieve this?
Link to the plugin: https://obsproject.com/forum/resources/obs-remote.19/
what you want is this https://obsproject.com/forum/resources/obs-websocket-remote-control-obs-studio-from-websockets.466/
A Websocket API for OBS Studio. The websocket server runs on port 4444 and the protocol is based on the OBSRemote protocol (including authentication) with some additions specific to OBS Studio.
Install instructions (Windows)
- Using the...
there are a variety of OBS websocket apps out there
great, thanks!
!remote
If you'd like to control OBS Studio remotely, you have a few options.
To control from the web on any device (including phones and computers), use OBS Tablet Remote (requires obs-websocket).
If you'd prefer a mobile app that works like the Elgato Streamdeck, you can try Touch Portal, UP Deck, or Deckboard.
Seems the audio monitor has bugs, it make OBS crash when I try to monitor some device. 😂
Maybe you can recored to mp4, and transmux to wav by FFmpeg? It's very fast and convenient.
where might I find a source for widgets like chat box, alert box and emote wall I can pull into OBS as browser sources? Stream Elements seems to have eliminated or moved them.
Streamelements has definitely not moved them
please don't suggest recording to mp4. you can record to flv and mkv, and transmux with those too
alright i'm going to see how obs deal with recording mkv.
hmm is it normal for an async video source that doesn't output any frames to segfault or am i doing something wrong?
when i click the "add source +" button
does streamfx's ffmpeg NVENC have the improvements brought by NVENC New? which one should I use?
If you are looking for more information or support for the StreamFX plugin, please visit the forum resource page.
Hello. Im new here. Trying to change my stream settings when it comes to the fps and resolution, but i cannot change anything. It's greyed out and a message shows up saying "Video is currently active" any help would be very much appreciated.
You need to stop streaming or recording or using the virtual camera
im not doing any of those sir
How about NDI?
Nope. I dont have the plugin.
Then we need to go to a support channel
If you need help or have questions about OBS, check out our #support-portal first!
Hi Everyone, I need some help in the installation of the plugin Background remover by Shilkrot in OBS. I guess installing the .so file is not enough. I can see all the editing parameters to edit my camera, but where I should be seen it's black. Has anyone installed it successfully on a Mac? If, so how? Thanks in advance!
To be honest, using Xsplit VCam would do a better job
Why would this person be using that plugin when they jave access to nvidia broadcast?
https://github.com/royshil/obs-backgroundremoval/issues/54
Seems a bit odd to wanna use something that looks like it routinely CRUSHES cpu performance with having an rtx gpu
I think you're wrong
They're on mac
They have a Mac.
But they are on a 9700k/2080s
I know reading can be hard sometimes. It's ok
Are we talking about Want to Learn?
because I'm looking at their chat history and no where it mentions a 2080
I'm talking about the person that opened the issue and is the first post
I'm very dum dum
II though you were linking the obs bg removal for nvidia
And were talking about "Want to learn"
Yes. I was commenting on the link I shared.
Say you are sorry and retract me being wrong
What are some must have vst plug ins?
anyone know what this would be caused by in my OBS logs?
13:25:27.921: effect_setval_inline: invalid data
13:25:27.954: effect_setval_inline: invalid data
13:25:27.988: effect_setval_inline: invalid data
13:25:28.019: effect_setval_inline: invalid data
13:25:28.056: effect_setval_inline: invalid data
13:25:28.086: effect_setval_inline: invalid data
13:25:28.120: effect_setval_inline: invalid data
13:25:28.154: effect_setval_inline: invalid data
13:25:28.188: effect_setval_inline: invalid data
13:25:28.220: effect_setval_inline: invalid data
13:25:28.254: effect_setval_inline: invalid data
13:25:28.287: effect_setval_inline: invalid data
13:25:28.320: effect_setval_inline: invalid data
13:25:28.353: effect_setval_inline: invalid data
13:25:28.390: effect_setval_inline: invalid data
13:25:28.420: effect_setval_inline: invalid data
13:25:28.454: effect_setval_inline: invalid data
13:25:28.487: effect_setval_inline: invalid data
13:25:28.521: effect_setval_inline: invalid data```
thousands of lines, using quite a few plugins. Audio Monitor, move transition
Usually indicates that an effect filter is setting data for it's shader wrong.
Difficult to be more specific with that unless you start removing filters until the logging stops.
Are custom buttons able to be added via plugins? Second question: is it possible to invoke scripts via the plugin?
when you say invoke, do you mean execute a script? or communicate with a script to make it do things? the former, probably not. the latter however is possible, but it's be a little weird to program
for custom buttons, depends on what you mean by plugin
if you mean a C++ plugin, you can do that and pretty much whatever else you'd like
if you mean a script, for scripts you're limited to what you can do with the properties system, which does allow buttons
IS the multiple rtmp plug in for obs safe to download, my pc detected a virus
yeah, seems there are some complaints about the installer.
The actual plugin part tho is fine.
https://www.virustotal.com/gui/file/ea8c7fa7bbc7c313562ae4390c21e7ced9c995ca176559518db29e565fd874bc
I think that im in over my head with this stuff I dont know if im even sending this out
I dont know it the grabber I got from digitmax works with OBS it dont seem to
Does anyone know a tool that can take audio from one output device and mirror that to another output device? Specifically where I can select the devices and not have to use ones the tool creates, and where it doesn't require the first one be an input device
Will the digitmak grabber work with the OBO system? it doesn't seem to.
hello, i have a doubt, my problem is that when I install a plugin in the obs it does not appear
What plugin and how did you install it?
no matter which one you try to install, none works
Well, let's focus on one
So taking one as an example, which do you want to install?
StreamFX 0.11.0 Alpha 3
Right. On Windows?
yes
And how did you install it
i tried it with the .exe installer and also manual
A current log file is required to help fix your issue. Please post a link to your current log file.
- In OBS select Help > Log Files > Upload Current Log File.
- Click Copy URL and then paste the link here.
- Wrong Color Format
- Old Version (26.1.1)
- Capture Interference
- Windows 10 21H1 (OK)
- No Output Session
AMD Ryzen 5 3600 - OK! / GeForce GTX 1650 SUPER - OK!
Instead of doing that, download the latest version from https://obsproject.com/
All plugins basically state that OBS 27 is a minimum version required. Be sure not to ignore the documentation in future, especially for StreamFX :-)
No probs
Can someone help me I tried installing the rtmp plugin but it had errors so i uninstalled it but it still kept having a dock appear ive tried uninstalling and reinstalling obs but its still there
this is the dock that keeps appearing
A current log file is required to help fix your issue. Please post a link to your current log file.
- In OBS select Help > Log Files > Upload Current Log File.
- Click Copy URL and then paste the link here.
- Hardware-accelerated GPU Scheduler
- Wrong YUV Color Range
- Capture Interference
- Windows 10 20H2 (OK)
- Not Admin
- No Output Session
Intel Core i5-6500 @ 3.20GHz - Possible bottleneck / GeForce GTX 1060 - OK!
is that in plugins or data folder?
It came with an installer so I assume there will be an Uninstaller in windows settings > app changes/removal
yeah i used the installer and when i double click it again it asks to uninstall and says done but it keeps lettings me uninstall
Might wanna post on the github for the plugin creator
alright and whats the warning about wrong yuv color range about sho8uld it not be set to full?
!partial
Most video editing applications and video streaming platforms expect a Partial-range input; streaming or recording in Full range will result in color clipping, often reported as overly bright or dark image. You can change your color range setting in Settings > Advanced.
If your editor and workflow supports Full range all the way through, including the things you're capturing, no problem. If you don't know what that means or how to check, you're best seting it to Partial.
Should be good to download
?
So if a plugin gets an update will it update by itself or will i need to uninstall and reinstall the plugin
@flat steppe if you used older versions of obs-multi-rtmp, manually remove them from %programfiles%\obs-studio\obs-plugins\64bit, newer installer installs into a different folder, so you end up with two installs active at once
ok i havent used older versions of rtmp and is that a fix to my other rtmp related problem? I was asking about plugins in general
@flat steppe what was your issue again?
i cant get rid of the rtmp plugin
i tried uninstalling using the installer engine i used to install in the first place then i tried removing the files manually then obs wouldnt launch after that so i just uninstalled and reinstalled obs
it has an uninstaller
yeah i used that but it kept saying uninstall done but its still there
okay, open %programdata%\obs-studio\plugins\ and delete obs-multi-rtmp
thank you a bunch that worked
idk why but it had an issue when i was trying to set it up where it had a glitched out dock but I want to know what went wrong so i could succesfully install it
@flat steppe run the installer again
the dock might get stuck in a weird spot, but just unlock docks and move it somewhere and it'll work
Maybe I should add manual deleting to readme...
yeah, I'm not worried 🙂 Its a long trusted plugin, and if you're worried about the installer, you could always just use the manual zip (its just a pain to install
here please help
i need some help. i want to install win capture audio plugin, i download exe file and its not showing up. does anyone now how to fix it?
A current log file is required to help fix your issue. Please post a link to your current log file.
- In OBS select Help > Log Files > Upload Current Log File.
- Click Copy URL and then paste the link here.
- Windows 10 21H1 (OK)
- No Output Session
AMD Ryzen 3 2200G - Possible bottleneck / Radeon Vega 8 - Possible bottleneck
- Windows 10 21H1 (OK)
- No Output Session
AMD Ryzen 3 2200G - Possible bottleneck / Radeon Vega 8 - Possible bottleneck
did you do step 2?
you have to run the .exe file
i am currently reinstalling it. when I run it, it says that it is a possible theat but i run it.
i saved it here every time, but its not working
can you right-click your OBS icon, click Properties, and take a screenshot of it?
have you restarted OBS?
yes, i have it closed when i am installing the plugin
try to add a source and take a screenshot of the available sources
what fixed it? hahaha
ahahaha idk, just reinstalled it, restarted obs and it magically worked xD
Could someone help me with the multiple rtmp, i cant get it around the virus software, and ive tried extracting it to the obs plugin folder to no avail
Thank You for your suggestions. I'm not a gamer and only use OBS for some things. I was hoping that I could use BR as it would be built in. However, I will look into your suggestions.
Thanks for your suggestion.
Thanks for your suggestion.
Can anyone who uses the Tuna plugin help me out?
just ask your question, if someone knows the answer they'll tell you
<@&715347355565817879>
I have problems connecting VLC to OBS Studio with the "VLC Video Source" overlay. It says something like "Couldn't play track" (I don't know because I'm not on my PC right now.) Does anyone know how to fix this?
if you open VLC (outside of OBS), and try to play the file. Does it work?
No.
It seems like it's playing in OBS but I can't hear anything in OBS.
you could use a program like handbrake to see if you can convert the file into a usable format 🙂
What file formats are supported?
most of them 😅
a wav does not contain video 😅 Thats audio only
playlists are not video or audio files
just a list of them
That's what Tuna is for.
Music
Most people use Spotify, but I'm trying to use VLC, which is supported.
im lost 😅 Originally we talked about VLC no being able to play a file.
Turns out its wav (?), and there is no video, just audio, which you can hear in VLC, yes?
Tuna is just for displaying information about the music you're playing, thats all. It has nothing to do with actually playing the files
Yes, Tuna doesn't display anything and there's no tutorial to it.
There are only Spotify tutorials.
Are you sure? 😅
https://obsproject.com/forum/resources/tuna.843/
Scroll down to the "spoiler" section
expand VLC source. There is a video and text instructions
Maybe I should keep talking when I'm at my PC.
That video doesn't help, check the comments if you don't believe me.
I've watched it.
He doesn't explain anything.
He also starts when he has already done half of the steps.
I'm so confused.
@sick slate Did you do this already?
Yup
How to take a screenshot - http://www.take-a-screenshot.org/
I think it said this in the log: Cannot find media.
Something like that. I'm not on my PC right now.
Maybe in an hour.
oh.. Yeah, you should certainly be at your machine for this
Yup
idk if I'll be here then, but yeah. Just posted it when you get there, and hopefully someone will be around by then 🙂
Thanks
Why would you want anything lower than half a second?
again, that refresh rate does not do what you think it does Elliot
hello im new to this server so sorry if this is the wrong place to type this but i was looking for help on obs pluggins and how they are not showing up
mostly my owned pro pluggin not showing up
ive tried pretty much everything and i cannot get it to show
Own3d has a server for help with their plugin
So, OBS seems to work now. Does Source Record Plugin work or is it kind of broken?
thank you @vale vine
I'm having a stupid problem (my own stupidity) with the Move transition override. I wonder if someone can dispel me of my ignorance. My scenes are here: you can see that a bunch of scenes are basically different zooms in or out of a screencast. I use a 34" ultrawide monitor, but I use the equivalent of a 27" monitor in the centre to screencast into Zoom when teaching university class (I'm a professor)
For all of those screencast zoom/unzoom scenes, I have transition override set to move. That way when I want to zoom in (or out) to a part of the screen in one of my classes, the transition looks natural.
But I'd like to have fade transitions whenver I'm not switching between two versions of screencasts that differ only in where they are zoomed. What I've done to address this seems really backwards! I basically have two "unzoomed" screencast scenes. One is called "Screencast" and one is called "Screencast unzoom". I have the latter set to a Move Transition Override. The other is set to the default transition (Fade).
But it depends on my practice. I basically have to use "Screencast" whenever switching to or from a non-screencast scene (to ensure a fade transition) and use "Screencast unzoom" whenever switching from a zoomed screencast.
I'd love to see a video of what you're trying to go for
BTW, all of the screencast scenes share a source: [NS] 16x9 screen scene. The difference between the scenes is just in the transformation.
OK, give me a few minutes, and I'll make one.
To me it sounds like you need the transition table plugin
This sounds like something I need to learn about!
Here's the walk-through https://youtu.be/6nS3Fn4aK4s
OK, just reading about the transition table plugin, and yes, that looks right
off-topic: that unlisted video is my first video using my new Earthworks Ethos mic, which I can't recommend highly enough
Transition Table plugin allows you to set rules which transition to use between any combination of scenes.
You can also set any scene to specific scene and specific scene to any scene rules.
https://obsproject.com/forum/resources/transition-table.1174/
Thanks so much, @weak escarp . I love your work, but was somehow unaware of that plugin
Is there a way to get all of the @weak escarp plugins in one download?
He makes them too quickly.
I know lol
Not at the moment, in my opinion there is nobody that needs them all
I don't, but it is a pain to locate all of them, and download each individually, if there was a zip file with all current just put together, it would be easier to update/pick what I want to use.
don't have to have an installer like StreamFX
👍
Fantastic stuff, @weak escarp . It's all working perfectly.
Bruh.
Hi, Ive been having issue with the OpenVR plugin, and was wondering, is this is the place to ask about it?
This is a good of a place as any, though might need to be patient as that's not a widely used plugin.
got it, thanks
My issue is that when I add the OpenVR Capture Source to my scene, it doesn't seem to detect SteamVR or any VR game as something to record/show in the scene. Its just a grey box in the properties window, and is a black box in the scene. This was happening before AND after I installed StreamElements
Anything anyone might know to fix this issue?
!log
A current log file is required to help fix your issue. Please post a link to your current log file.
- In OBS select Help > Log Files > Upload Current Log File.
- Click Copy URL and then paste the link here.
Do that after trying to add the source
Might be some useful information or errors logged
hello, I am trying to learn how to use OBS for streaming, how do I get the twitch chat box back?
To enable Chat docks for Twitch, Restream and YouTube, you will need to connect your account via Settings -> Stream.
If you'd like to enable chat docks for other services, you can use View -> Docks -> Custom Browser Docks. This allows you to include any webpage in OBS.
is there a tutorial video on how to properly do that?
Just follow what the bot says
thats in the OBS studio? is there any other things i need to down load to run obs properly or just OBS studio?
OBS Studio is the entire app
thank you! sorry a NOOB to OBS lol
Thank you for the info. It worked perfectly.. what about being able to play from PC in OBS? havnt quite mastered that yet?
New to OBS? Check out our 4 step quickstart guide.
Want to learn even more? Check out our in-depth overview.
If you'd prefer to learn with videos, check out these guides made by the community:
There will be a guide on setting up an appropriate source to capture your gameplay
How do I set up a bot for and win-loss counter? Thanks in advance. I think this is the right channel
I use ghost-chat for twitch chat overlay. Is there a good tool for youtube chat overlay?
Is there anyone here that can help me with getting OBS to record two separate files which would be my gameplay and my webcam recording
I answered in #tech-talk
But I’ll post again
There’s a download link and guide there
Thank you
No probs
i am having issues with a script counter and i have python idk how to fix this issue
That path doesn't look right
That path is to a start menu folder, not to the folder where Python is located
what should the path be because python program is in that folder?
Python isn't in that folder, a shortcut to Python is
Let me find the actual folder
C:/Users/david/AppData/Local/Programs/Python/Python36
At least, that's what it should be in theory. I'm not actually able to check, I'm not on Windows atm
I don't even have app data I am so screwed
You do have it, it's hidden
You have to type it in the address bar above
Click in the bar next to Windows (C:) > Users > David > and type AppData
I typed it up and this happened
ok figured it out
checking if it worked
still getting nothing
Feels like this would be a lot easier, heh: https://obsproject.com/forum/resources/point-counter.625/
All good, it's working, that's the main thing 😄
lmao yeah should I download multiple if I need more counters?
Yeah, you could just copy the script a few times
PointCounter1.lua, PointCounter2.lua, etc.
ty
Is there something that I can use that will translate what I'm saying into a different language, like for captions?
You may be able to do a janky solution with Google Speech-to-Text plus automatic translation. Probably not free tho
do i need an NDI plugin for the 4k60 pro by elgato?
on macOS?
If you only want to use OBS and not the elgato software at the same time no not at all
This is just a way to use the Capture card with multiple programs at the same time
i cant seem to get it to work however
If you have issues with the capture card in combination with OBS then #windows-support is the right place.
No need to use stream link
what's that plugin called that makes like animated color changing shapes like a colour changing webcam border
they're typically just animated gifs or transparent videos
you can use the media source for them
i sure hope those are not gifs, that would just be awful
i wonder how bad the performance would be if something like the streamfx color grading filter was used, along with move value filter?
Is there any way to create a transition where the second scene appears at a smaller size and then grows to fill the screen? Not a keyed out portion of the scene, but the entire scene
Oh my god, im so sorry. I didnt mean to ignore you help. I'll get the log asap
VLC plugin is looping a list of shuffled tracks, but it is looping like 20 of them]
but their is 100 in the playlist
Log contains debug messages (browser/ftl/etc), for a filtered version click here
- Multiple Game Capture
- Windows 10 21H2 (OK)
- 0.2% Rendering Lag
- 0.2% GPU Encoder Overload
Intel Core i7-6700K @ 4.00GHz - OK! / GeForce GTX 1080 Ti - OK!
Open VR plgin issues log
Log contains debug messages (browser/ftl/etc), for a filtered version click here
- Multiple Game Capture
- Windows 10 21H2 (OK)
- 0.2% Rendering Lag
- 0.2% GPU Encoder Overload
Intel Core i7-6700K @ 4.00GHz - OK! / GeForce GTX 1080 Ti - OK!
i need help with the bongobs cat plugin specifically the mania mode, I want it to display zx./ in that order, but when i edit the config and put key 4 as "/" or "?" or "Slash" or "191" none of that works
how can i get the 4th key to register when i press /
anyone here?
so.... I have a plalylist of videos... I know how to overlay the filename.....via VLC ....or even POTplayer with a window capture....
Wondering if there is a way to Overlay the Title of the NEXT Video in the list....before it actually comes on...
I'm having a problem, the source doesn't show Dota 2 that was launched by a skinchanger. Is the problem missing a plugin or something else?
I've tried everything... looked at all plugins.. even Tuna..
Tuna will show the current filename of the VLC Media source...
The skinchanger is probably hooking the game and not allowing OBS to hook
What can I say
but it won't show what's next...
If you need help or have questions about OBS, check out our #support-portal first!
You've been here 2 hours with the same issue, maybe removing the skinchanger help
Okay, thanks for your help, all the best to you.
any ideas? I've seen someone do this.. so there is a way... i was hoping there is some plugin....
It might be media request
Not tuna or something local
I know it's possible with Streamelements
when you say, "media request" ....is that a plugin?
Maybe google what I said
and I'll definitely check out streamelements
I think streamelements one is for when you use their media request queue, which plays YouTube videos
yeah ..no.. this would be for local media files being played from HD
Not tuna or something local
I did mention this before
right...and I also mentioned that I looked into Tuna....and that it only shows the current file being played...
I don't know of any plugins that can do that for local files?
Neither.
Short of having something from the program showing and window capturing it
unless the person who I saw doing it had an overlay read the name off a text and had it show up on screen a preset amount of time before the current media file ends....
Quite possible. Do you know what player they used?
Who's the person?
The playing next text doesn't sound crazy
I'm surprised there isn't a plugin for a "Playing Next: " type of thing....
it seemed like it was videos... and you want to show the video
I'm almost positive they are using OBS.....
In a small square
and they were streaming to a Vaughn Live
no....the person basically had an animated text pop up on screen maybe 2 minutes before one Media File (movie) was over and displayed the next Media File (movie) on the list.... something like "Coming up Next: Star Wars" ......for ex
Are you 100% they were playing local content? That sounds like a non-local overlay
I don't think is possible with something else than an actual media player showing the queue itself
Not possible so far
(also, your poor full-stop key is getting overworked. Let it have a rest.)
absolutely positive it was local...
How you know?
Short of asking, there's no real way to tell.
Do you know the streamer and seen their setup with local files playing?
one of their mods said told me...
Mmmm
You could ask their mod what they're using to show the up-next thing, then
Or them directly, rather. Either or.
and what does that mean "your poor full-stop key getting overworked" ... ? not familiar with that lingo
" . "
Period
oh believe me, I've been trying.... there are NEVER avail... lot of Vaughn users let there streams just cycle...
ok...no worries... just thought I might ask some OBS gurus......but I figured there are are prolly running some script they make to read playlist off TXT.... becuase I did search ....and only found a couple ppl in Forums that asked the same question
thanks anyways....
oh sry...those "." are force of habit
They make you seem like your thoughts are trailing off lol.