ScarletPercy
New Member
Is there a way to kick off timed recordings with OBS? Also, can I set a stop duration on my current recording so that I can walk away from my screen and expect the recording/stream to end after X minutes?
This is perfect! This is more than what I was looking for :)Tools > Output Timer
This settings tells OBS how long to record orstream before automatically stopping.
On the Mac, you can tell OBS to start streaming by launching it from the command line with the argument:
--startstreaming
An example would be:
/Applications/OBS.app/Contents/MacOS/OBS --startstreaming
Then you would just need a way to run that command on a timer, such as this:
Create a file in a text editor. Make this the content:
#!/bin/bash
export PATH=/usr/local/bin:$PATH
/Applications/OBS.app/Contents/MacOS/OBS --startstreaming
Save this file as OBSStartStreaming.command
Then use Automator to make a calendar alarm that launches this file. This way, you can make a timed item in your calendar that automatically launches OBS and starts streaming with the current settings, and it will stop when the Output Timer settings tells it to.
I need some help.hello, after i searching in this forum, i found solution to stop record by using command
- firstly install the "obs-websocket plugin": https://obsproject.com/forum/resources/obs-websocket-remote-control-of-obs-studio-made-easy.466/
- then install this pluggin "Command line tool for obs-websocket plugin" : https://obsproject.com/forum/resources/command-line-tool-for-obs-websocket-plugin.615/
- follow the instruction
- then open up the command line using shift + right click at the OBSCommand directory, then type "OBSCommand.exe /startrecording" (to start record), and "OBSCommand.exe /stoprecording (for stop record) "
- that's it
hope it help
Hello, this didn't work for me, I have to do the same but with recording.This is perfect! This is more than what I was looking for :)
I need some help.
I downloaded and install Websocket.
How do i install command like tool. I have the zip file but where (which folder location) do you extract this in.
Once i have that done, can you please give me screenshot example on how you setup start and stop recording example. thanks
Hey Dave, sorry for the late reply, I was losing hope to get an answer...it worked, thanks! I was able to launch .command file and I also made an automator script and a calendar event to schedule OBS recording, the only problem now is when OBS open it up and starts to record the screen the OBS window is maximized and I have to minimize it manually, this means that I must be on my desk to minimize OBS...so any schedule is useless.Hey Bulsara72 - a bit late I know, but maybe it'll help people with the same issue.
Your text file is a rich text file rather than a plain text file. In TextEdit when you create the file, do Format > Make Plain Text.
Ok, I found that. Now there's another problem...when everything starts, the terminal window stays in the center of the screen, and I have to minimize it manually, I also tried to leave the terminal open and move the window to the side of the screen or to minimize it and restart the routine, but when command file is launched a new window appears...looks like a neverending story :(Hey Dave, sorry for the late reply, I was losing hope to get an answer...it worked, thanks! I was able to launch .command file and I also made an automator script and a calendar event to schedule OBS recording, the only problem now is when OBS open it up and starts to record the screen the OBS window is maximized and I have to minimize it manually, this means that I must be on my desk to minimize OBS...so any schedule is useless.
Is there a way to start OBS minimized?
Thanks