Show 2 Previews(For Recording and Streaming)

Msgames79

New Member
For advanced settings.
Use 2 different previews for recording and streaming.
It needs 3 scenes.
Scene 1 (to display both)
Scene 2 (to display only record)
Scene 3 (to display only stream)
These scenes must be able to create from Scene Collection
 

AaronD

Member
Sounds like a graphical thing to me, so:
How good are you with Photoshop, GIMP, MSPaint, or similar tools? Even PowerPoint might be passable if you can keep it clean. (if you do use PPT or similar, take a screenshot of the final result and post that image here)

Anyway, take some screenshots of what it is now, run them through whatever process you need to produce what you want, and post that here. It would go a long way towards our understanding, and may even show you some problems with your first concept. Then you can fix those problems as you're making the "hacked screenshot", and give us the fixed version.
 

Msgames79

New Member
Allows recording based on a preview instead of a single source like Source Record.
Since it is projected in a different way than other scenes, it may be better to make it possible to create it from the Profile option instead of the Scene Collection.(I'm translating from Japanese, so the grammar may not match.)
 

Attachments

  • picture.png
    picture.png
    53 KB · Views: 4

AaronD

Member
Okay. I thought you wanted 3 video windows and was wondering how they were all going to fit. There's a Multiview window or projector, but I don't think that's what you're looking for.

If you want to stream and record different things at the same time, both produced well, I think you'd be better off with two instances of OBS. The --multi flag on the command line lets you do that:
Bash:
obs --multi --profile "Stream" --scene-collection "Stream" &
obs --multi --profile "Record" --scene-collection "Record" &
in a script on Linux, or:
Code:
start "" obs --multi --profile "Stream" --scene-collection "Stream"
start "" obs --multi --profile "Record" --scene-collection "Record"
on Windows.
obs --help to see everything that you can do there.

You can also change the shortcut, launcher, desktop file, whatever your system calls it, to use the command line switches. Copy it, and have each copy use different options, etc. I still like the script better, because it's one thing to run when you want to do X, and you can maintain it as one thing as your needs change.
 
Top