Rank: Advanced Member
Groups: Registered
Joined: 8/20/2014(UTC) Posts: 388
Thanks: 29 times Was thanked: 80 time(s) in 51 post(s)
|
This is an embarrassingly simple piece of software written with AHK that will countdown anytime up to an hour and automatically start recording (provided that recording has been setup) when the timer reaches zero. It will then start to count up. The window can be re positioned and ESC closes. It works off the web api, so it will open a window. I am sure there is another/better way to do this... I usually get everything ready prior to a show and have some time to do other tasks. I sometimes forget to press record when I get distracted. I hope someone finds it useful. FYI. The software does prompt a smartscreen error in some versions of windows but I can assure you its safe. If you would like to run the script in AHK, here it is:
Progress, m1 fs70 fm12 zh10 CTgreen w250, % "00:00", Enter time and return loop,4 { Input x, L1,{esc}{enter},1,2,3,4,5,6,7,8,9,0 w .= x , y := SubStr("000" w, -3) if (ErrorLevel = "Match") Progress, m1 fs70 fm12 zh10 CTgreen w250, % SubStr(y,1,2) ":" SubStr(y,3,2), Enter else if (Errorlevel = "EndKey:enter") break else exitapp } startover: t := 0, w := SubStr(y,1,2)*60 + SubStr(y,3,2) settimer,label,1000 return label: ++t if (t < w) Progress, % 100*(w-t)/w, % SubStr("00" floor((w-t)/60),-1) ":" SubStr("00" mod(w-t,60),-1), count down else if (t = w) { Progress, m1 fs70 fm12 zh10 CTred w250, 0, Done! run, http://127.0.0.1:8088/API/?Function=StartRecording } else if (t > w) Progress, , % SubStr("0" floor((t-w)/60), -1) ":" SubStr("0" mod(t-w,60), -1), Record Time esc:: ExitApp
File Attachment(s): Vmix Countdown Recorder.zip (589kb) downloaded 84 time(s).You cannot view/download attachments. Try to login or register.
|
5 users thanked kjones9999 for this useful post.
|
|