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
spencerm24  
#1 Posted : Monday, July 30, 2018 12:59:49 PM(UTC)
spencerm24

Rank: Advanced Member

Groups: Registered
Joined: 9/23/2017(UTC)
Posts: 249
Location: Toronto

Thanks: 13 times
Was thanked: 19 time(s) in 17 post(s)
I know vMix can't schedule events based on time of day, is there some other way I can execute a shortcut at a specific time of day? I need a countdown to start at 7:15pm, so the show runs at 7:30, but am not always present at 7:15 to hit the button, so if I can somehow automate it, that would be perfect. Is there a way? third party?
Barney Box Lane  
#2 Posted : Tuesday, July 31, 2018 5:20:42 AM(UTC)
Barney Box Lane

Rank: Advanced Member

Groups: Registered
Joined: 8/21/2017(UTC)
Posts: 319
Location: Uk

Thanks: 26 times
Was thanked: 33 time(s) in 29 post(s)
stick a radio alarm clock next to the computer, run the headphone out into the computer, trigger start of the show when noise level is over -6db on the input )
pm  
#3 Posted : Tuesday, July 31, 2018 6:55:17 AM(UTC)
pm

Rank: Advanced Member

Groups: Registered
Joined: 11/28/2015(UTC)
Posts: 182

Thanks: 10 times
Was thanked: 32 time(s) in 27 post(s)
One idea could be to start a script by Windows task scheduler. In the script make a http vMix web scripting call with the function "KeyPress"

Regards,
Patrick
thanks 1 user thanked pm for this useful post.
spencerm24 on 7/31/2018(UTC)
stevespaw  
#4 Posted : Tuesday, July 31, 2018 9:01:47 AM(UTC)
stevespaw

Rank: Advanced Member

Groups: Registered
Joined: 3/12/2015(UTC)
Posts: 480
Man
Location: Kansas City, MO USA

Thanks: 149 times
Was thanked: 75 time(s) in 57 post(s)
We use this,
vTask - it works very well.

http://vfxblend.com/tutorials/

Steve
madness  
#5 Posted : Tuesday, July 31, 2018 12:21:56 PM(UTC)
madness

Rank: Advanced Member

Groups: Registered
Joined: 4/16/2013(UTC)
Posts: 406
Man
Location: Iowa

Thanks: 281 times
Was thanked: 32 time(s) in 29 post(s)
Autohotkey can send a webAPI command using a time trigger.

Code:
#SingleInstance Force 
#Persistent

	; Poll the time every second for precise timing....
	SetTimer, CheckTheTime, 1000 ; 1000 is milliseconds
Return

CheckTheTime: ;{
	TheTime := A_Hour . A_Min . A_Sec ; Create the time format to compare with
	If (TheTime == 111400)	; Compare "The Time" with the trigger time of your chosing
	{ 	; Web API command goes here
		msgbox Time Triggered	; Sample trigger command replaced by Web API command.
	}

Return
;}
spencerm24  
#6 Posted : Tuesday, July 31, 2018 2:31:58 PM(UTC)
spencerm24

Rank: Advanced Member

Groups: Registered
Joined: 9/23/2017(UTC)
Posts: 249
Location: Toronto

Thanks: 13 times
Was thanked: 19 time(s) in 17 post(s)
pm wrote:
One idea could be to start a script by Windows task scheduler. In the script make a http vMix web scripting call with the function "KeyPress"

Regards,
Patrick



This seems to be the simplest and easiest way to do this. Thanks!!
Vuurmannetje  
#7 Posted : Tuesday, July 31, 2018 6:15:23 PM(UTC)
Vuurmannetje

Rank: Advanced Member

Groups: Registered
Joined: 5/14/2018(UTC)
Posts: 112
Location: Netherlands

Thanks: 3 times
Was thanked: 28 time(s) in 18 post(s)
Another option is to get a midi based clock, or if you have Qlab can trigger on time.
Get rtpMidi to transmit it to Vmix and set.
kjones9999  
#8 Posted : Saturday, August 4, 2018 5:34:31 PM(UTC)
kjones9999

Rank: Advanced Member

Groups: Registered
Joined: 8/20/2014(UTC)
Posts: 388

Thanks: 29 times
Was thanked: 78 time(s) in 50 post(s)
I used AHK to make this program -- just put in the shortcut -

https://forums.vmix.com/...aspx?g=posts&t=14302
thanks 1 user thanked kjones9999 for this useful post.
WayneMHK on 11/17/2020(UTC)
Users browsing this topic
Guest
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.