I second
@Lawrence_SoCal
This plugin will allow you to automate various tasks using "Macros". Macros consist of a list of conditions under which a list of actions will be performed. Examples and guides can be found in the wiki. Feel free to contribute! If you run...
obsproject.com
Start OBS early, without automatically streaming, and have an Init macro in Adv. SS that runs once on startup. This macro sets up everything, in case OBS was shut down weird and remembered that. It does not start the stream yet. The condition for that macro is "Plugin Running", which is always true, with the "only on change" box checked, in the header above the conditions.
(I *always* have the "only on change box checked, because all of my automation needs to run exactly once when its conditions are met. If you have something that needs to be enforced constantly, then you might leave it unchecked.)
I haven't shown any Actions for this one, because it depends completely on your rig. See the bottom of this post for an overview of what you can do. (it's a lot!)
Another macro has a Date condition, for the time that you want to start streaming, and of course it does exactly that.
Either in the Stream Start macro before the actual start (as shown), or in the Init, I would set up a static scene for it to start streaming with. Then soon after the stream starts (1 second as shown here), switch to the video scene that you actually want to start with. You can do the "soon after" part with a Wait action in the Stream Start macro (as shown), or with a condition timer in a third macro. The difference is that you can cancel a condition timer by making the condition not true, whereas you can't cancel a Wait action.
Yet another macro looks for the video playing and less than X time remaining, and switches to the following scene with a transition that takes almost X time, but not quite. This is much more professional-looking than waiting for the video to finish *completely*.
(I just realized that you probably don't want "Previous Scene" for this, but I've already torn down my Sandbox rig. There's enough above that you should be able to figure it out though.)
I have a similar set of automation in one of my rigs, to set up the 15-minute leader and start, manually trigger the Welcome video because we don't keep *that* tight of a schedule, and automatically end up on a wide-shot camera. From there, it's manual until the end, where another set of macros takes us automatically from the Goodbye scene for 30 seconds, to a 10-minute trailer so people can disconnect before getting kicked off, and automatically stops the stream.
A minute after the stream stops, the Run action calls an external one-liner script that I wrote that closes OBS, so people don't play whack-a-mole trying to close multiple windows and mess up the next workflow in the process.
This also shows the condition timer that I realized I didn't show before.
The available Conditions and Actions are:
and you can use boolean operations too, like AND, OR, and NOT, to further refine the Conditions.
In a different rig, I use WebSockets - both Action and Condition - to coordinate two different instances of OBS on the same machine...