logo

Live Production Software Forums


Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
STADIORADIO  
#1 Posted : Tuesday, January 28, 2020 11:33:15 PM(UTC)
STADIORADIO

Rank: Advanced Member

Groups: Registered
Joined: 10/1/2013(UTC)
Posts: 194
Man
Location: Bovalino (Italy)

Thanks: 83 times
Was thanked: 3 time(s) in 3 post(s)
Goodmorning everyone. I would like to create in a multiview a box where to run at a predefined time, first one room then another. In another panel, instead, make a video shoot. While for the video there is no doubt about how to make it run, I can't find the solution to make the two cameras run in the first box. Do you have any suggestions?
Thank you in advance.
doggy  
#2 Posted : Tuesday, January 28, 2020 11:54:16 PM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,057
Belgium
Location: Belgium

Thanks: 283 times
Was thanked: 916 time(s) in 755 post(s)
Sounds confusing

you mean like replacing the camera by another in a box frame or so , or like 2 cameras side by side or ....
thanks 1 user thanked doggy for this useful post.
STADIORADIO on 2/1/2020(UTC)
mavik  
#3 Posted : Wednesday, January 29, 2020 1:52:11 AM(UTC)
mavik

Rank: Advanced Member

Groups: Registered
Joined: 4/23/2017(UTC)
Posts: 1,126
Man
Location: Germany

Thanks: 3 times
Was thanked: 164 time(s) in 146 post(s)
Indeed sounds a bit confusing. But it sounds the mini mixer could be of help. Use the output of the mini mixer as source for the multiview. That way you can switch video in a given multiview.
STADIORADIO  
#4 Posted : Wednesday, January 29, 2020 5:00:29 AM(UTC)
STADIORADIO

Rank: Advanced Member

Groups: Registered
Joined: 10/1/2013(UTC)
Posts: 194
Man
Location: Bovalino (Italy)

Thanks: 83 times
Was thanked: 3 time(s) in 3 post(s)
TEST.jpg (220kb) downloaded 0 time(s).

Sorry for my English :-).

I used the play list to automatically change the rooms of my production. Now I would like to come up with a solution similar to that of the image, with the large box where I run my rooms, only that everything must be automated, I hope there is the possibility of operating with triggers even on "mix"
doggy  
#5 Posted : Wednesday, January 29, 2020 5:33:18 AM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,057
Belgium
Location: Belgium

Thanks: 283 times
Was thanked: 916 time(s) in 755 post(s)
Originally Posted by: STADIORADIO Go to Quoted Post


Sorry for my English :-).



No worries but an image helps

If i understand correctly you want to switch the camera after certain time automatically

fairly easy with a multiview
Open a color input (or one with your background) and add both cameras as extra layers on top

There are shortcuts that allow you to turn on and off (MultiviewOverlayOn/Off) the visibility of layers or even move them .

This means you can let a script do this after a certain time , or even switch between the two at regular intervals on a continuous loop


say you have a input numbered 1 (can use name also) that is an image or just a plain color input and have camera 1 on multiview overlay 2 and camera 2 on multiview overlay 3. no all you need to do is turn on/off layer 3



Code:


Do While true
API.Function("MultiViewOverlayOff",Input:="1",Value:="3")
Sleep(10000)  'wait 10 seconds
API.Function("MultiViewOverlayOn",Input:="1",Value:="3")
Sleep(10000)  'wait 10 seconds
Loop

'this will run forever  rotating cameras every 10 seconds for example




hope this helps
thanks 1 user thanked doggy for this useful post.
STADIORADIO on 1/31/2020(UTC)
STADIORADIO  
#6 Posted : Thursday, January 30, 2020 6:55:42 PM(UTC)
STADIORADIO

Rank: Advanced Member

Groups: Registered
Joined: 10/1/2013(UTC)
Posts: 194
Man
Location: Bovalino (Italy)

Thanks: 83 times
Was thanked: 3 time(s) in 3 post(s)
I thank you immensely for the indications you are giving me. Unfortunately I'm not familiar with APIs. On the forum I read at will, but I still haven't understood these codes where they should be inserted and how they interface with Vmix. I will try to deepen. Thanks again.
doggy  
#7 Posted : Thursday, January 30, 2020 7:41:12 PM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,057
Belgium
Location: Belgium

Thanks: 283 times
Was thanked: 916 time(s) in 755 post(s)
Originally Posted by: STADIORADIO Go to Quoted Post
I thank you immensely for the indications you are giving me. Unfortunately I'm not familiar with APIs. On the forum I read at will, but I still haven't understood these codes where they should be inserted and how they interface with Vmix. I will try to deepen. Thanks again.


to use the code go to settings -> Scripting
click Add and paste te code i gave there . click save and close that window , you can hit the start button to start the script running
as you noticed the script has a name ( you can change that )
to start or stop the script one can use a shortcut linked to the keyboard by also going to settings but -> shortcuts and bind a key to the shortcut function Scriptstart with value name of the script you made ( there are videos about that )
thanks 1 user thanked doggy for this useful post.
STADIORADIO on 1/31/2020(UTC)
STADIORADIO  
#8 Posted : Friday, January 31, 2020 9:42:01 PM(UTC)
STADIORADIO

Rank: Advanced Member

Groups: Registered
Joined: 10/1/2013(UTC)
Posts: 194
Man
Location: Bovalino (Italy)

Thanks: 83 times
Was thanked: 3 time(s) in 3 post(s)
Mixed joy with emotion !!
Fantastic!!
it works, I managed to make it work .... Thanks!
STADIORADIO  
#9 Posted : Friday, January 31, 2020 9:43:35 PM(UTC)
STADIORADIO

Rank: Advanced Member

Groups: Registered
Joined: 10/1/2013(UTC)
Posts: 194
Man
Location: Bovalino (Italy)

Thanks: 83 times
Was thanked: 3 time(s) in 3 post(s)
Now I am missing only one small thing, being able to define the edges of the two windows. If there is a way to customize the edges. Thank you very much.
doggy  
#10 Posted : Friday, January 31, 2020 10:31:35 PM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,057
Belgium
Location: Belgium

Thanks: 283 times
Was thanked: 916 time(s) in 755 post(s)
Originally Posted by: STADIORADIO Go to Quoted Post
Now I am missing only one small thing, being able to define the edges of the two windows. If there is a way to customize the edges. Thank you very much.


No not in this case but you could add a frame design on top of both once (other layer ) or have a colored rectangle resized and slightly bigger than the video inputs on a layer behind them
thanks 1 user thanked doggy for this useful post.
STADIORADIO on 2/1/2020(UTC)
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.