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
AaronAtTheRiot  
#1 Posted : Friday, April 7, 2023 9:36:21 AM(UTC)
AaronAtTheRiot

Rank: Newbie

Groups: Registered
Joined: 4/7/2023(UTC)
Posts: 2

This may be old hat, so if this has been answered, please share the solution.

How can I view the Recording Time in real time while using MuliCorder during a recording/production. This feature is available when not using MultiCorder.

Cheers!
nikosman88  
#2 Posted : Saturday, April 8, 2023 3:15:10 AM(UTC)
nikosman88

Rank: Advanced Member

Groups: Registered
Joined: 12/24/2021(UTC)
Posts: 345
Greece
Location: athens

Thanks: 113 times
Was thanked: 53 time(s) in 50 post(s)
Originally Posted by: AaronAtTheRiot Go to Quoted Post
This may be old hat, so if this has been answered, please share the solution.

How can I view the Recording Time in real time while using MuliCorder during a recording/production. This feature is available when not using MultiCorder.

Cheers!


Hello. Unfortunatelly no, does not exist a setting for this in production clock but a solution is to modify this script to start a timer in a text input when multicorder is true/working
https://forums.vmix.com/...ng-for-Dummies#post71124
Code:

' Checking multicorder status from the API xml (127.0.0.1:8088/API)
' and display in a Title Input 

dim ismultiCorder as string = ""

'lets keep checking
do while true

   dim xml as string = API.XML()
   dim x as new system.xml.xmldocument
   x.loadxml(xml)

'are we multicorder?
   ismultiCorder = (x.SelectSingleNode("//multiCorder").InnerText)


'put a response in a title and change color accordingly
  if ismultiCorder  = true
    API.Function("StartCountdown", Input:="Timer Centre.gtzip")
  else
    API.Function("StopCountdown", Input:="Timer Centre.gtzip")
    
 end if

sleep(500)
loop
AaronAtTheRiot  
#3 Posted : Saturday, April 8, 2023 9:59:12 AM(UTC)
AaronAtTheRiot

Rank: Newbie

Groups: Registered
Joined: 4/7/2023(UTC)
Posts: 2

While that is a type of solution, I have no idea where or how to implement that.
nikosman88  
#4 Posted : Saturday, April 8, 2023 10:57:18 AM(UTC)
nikosman88

Rank: Advanced Member

Groups: Registered
Joined: 12/24/2021(UTC)
Posts: 345
Greece
Location: athens

Thanks: 113 times
Was thanked: 53 time(s) in 50 post(s)
Originally Posted by: AaronAtTheRiot Go to Quoted Post
While that is a type of solution, I have no idea where or how to implement that.


This is a simple script that runs inside vmix. Here is a guide how to do this
1.Go to vmixSettingsScripting and press Add. Copy-paste the code from the forum in the windows it opens. In the name give a name you want but remember it because you will have to enter it in step 8.
2.Press Save and then close and then ok to go to vmix main ui
3. Add InputTitleGT Timer and select Timer Centre
4. In the new window that opens press the button Settings
5. In Duration set a time for maximum multicorder time. For example 10 hours. Check the button Reverse and now you will see that “Stop Time” changes to “Start Time” and press ok
6. Close the Title Editor windows to go back to main vmix ui
7.Now you have a new input with the timer you made. Go to SettingsShortcutsAdd and select the button you want that will start the script by pressing Find
8. In Function find and select ScriptStart. Now the shortcut window will say Value: Script Name. Inside this field write the name of your script and press ok
9. Back to vmix main ui. Now press the button shortcut you assign in step 7
10. Script will start to run. Now when you start to multicorder you will see that the input title “Timer Centre.gtzip” starts to count. If you stop your multicorder, the timer will stop.
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.