Launch a média in a second monitor when changing scenes

Supakriss

New Member
Hello,

Is there any way to launch a média in a second monitor when changing scenes ?

For example :
I have a video projector as a second monitor showing an animated background behind me. ( video loop )
In the first scene, ( Scene A ) I want my background to be my background A.
When I change to the second scene, ( Scene B ) I want my background to be my background B.

I've tested with outputing a source in a projector out to my video projector and with NDI outputs as well but the problem remains the same.
I can't find a way to toggle my secondary output source when I change a scene.

Any solution to do that ?

( sorry about my bad english I hope you understand me :-/ )

Thanks and happy new year ;-)
 

BluePeer

Member
Ok if i understand your current setup correct you have currently a "inaktive" scene that is displayed with project preview to a display thats visible behind you
and if you switch your "active" scene you wan't to change whats active there?
there exist resources called "scripts" in different variations
with that you can create "triggers" like change scene and then tell what do do like
activate/deactivate sources in scenes
for example
Trigger "Switch active scene"
if scenename = SceneA then {
+visible sourcevideonameA in SceneBackground
-Visible sourcevideonameB in SceneBackground
}
if scenename = SceneB then {
-visible sourcevideonameA in SceneBackground
+Visible sourcevideonameB in SceneBackground
}
This only Visualization not the required code
 
Top