Once I get the automation to the point where ALL of the manual steps are art, not function, I think I can stick with that version. If you're already there, then you can use the
--disable-updater
flag on the command line so that the other people aren't tempted.
Edit the shortcut, or the relevant line in a startup script, or whatever you have, from
obs
to
obs --disable-updater
.
Lots more options there too.
obs --help
in a terminal (Command Prompt) to see them all. It'll just print the list and exit.
For example, I have two lines in a setup script to run a combination local and remote meeting:
Code:
obs --disable-updater --multi --studio-mode --profile "Meeting_Master" --collection "Meeting_Master" --startvirtualcam > /dev/null &
obs --disable-updater --multi --studio-mode --profile "Meeting_Slave" --collection "Meeting_Slave" > /dev/null &
The script does a lot more than just that, like a
browser-based remote meeting and
external audio processing on
Ubuntu Studio Linux, but that's the OBS part.
Advanced Scene Switcher in the Master also has an Init macro that waits a while and then switches to the first scene, in lieu of the
--scene
flag on the command line, so that it also triggers my scene-sync automation and thus initializes everything. (Master and Slave both do more than just scenes)
Some of the automation that I already have in the church broadcast rig in various scripts, and needs to move into Adv. SS:
- Trigger: Wall-clock time
- Switch Scene: Announcement loop, HDMI-captured from projection PC, with start time underneath
- Start Streaming
- Trigger: Play welcome video to the stream
- Change HDMI matrix switch: Live Stream to Back Wall TV (so the pastor can see the switch to the camera)
- Wait for video done
- Switch Scene: Back wall camera
- Wait a few seconds
- Change HDMI matrix switch: Confidence Monitor to Back Wall TV (guitar tabs, etc.)
- Etc.
Some of the automation that I want to add:
- Trigger: Just played the welcome video, and the pastor is talking (audio is up)
- Change setting in FOH console: Noise Gate for audience mics, from function-active to always-on (Note 1)
- Change setting in OBS: Noise Gate for analog line input, from function-active to always-on (Note 2)
- Trigger: Current Scene: Send-off
- Undo the previous trigger in this list
- Etc.
Note 1: This gate has a side-chain connection to the speaking-mic submix, so the room reverb and audience response actually follow that instead of itself...until this setting change, after which those mics just stay on. The way that I'm using it is really just a mute button with automatic timing and a nice fade.
Note 2: The reasoning here is to handle a low-level ground loop and allow complete silence before and after the service, but disable that function during the service because this congregation can be quiet enough to hear that, at which point it's more distracting to have the gate cut on and off than to just keep the noise.