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
Ario  
#1 Posted : Sunday, May 26, 2024 11:01:44 PM(UTC)
Ario

Rank: Advanced Member

Groups: Registered
Joined: 2/2/2015(UTC)
Posts: 166
Location: NL

Thanks: 164 times
Was thanked: 19 time(s) in 16 post(s)
Probably nothing new for some, maybe useful for others:
You can create a shortcut (or script, to be called by e.g. Bitfocus Companion) in order to efficiently fill time-outs or other breaks in the game,
with the MOST RECENT replay events.
The vMix replay controller plays oldest events first, which is often NOT what you want.

This can be overcome by this script (start at higher number than 0099 if you expect more than 100 replay-worthy moments in your game):

Function=ReplayPlayEventsByIDToOutput&Value=0099,0098,0097,0096,0095,0094,0093,0092,0091,0090,0089,0088,0087,0086,0085,0084,0083,0082,0081,0080,0079,0078,0077,0076,0075,0074,0073,0072,0071,0070,0069,0068,0067,0066,0065,0064,0063,0062,0061,0060,0059,0058,0057,0056,0055,0054,0053,0052,0051,0050,0049,0048,0047,0046,0045,0044,0043,0042,0041,0040,0039,0038,0037,0036,0035,0034,0033,0032,0031,0030,0029,0028,0027,0026,0025,0024,0023,0022,0021,0020,0019,0018,0017,0016,0015,0014,0013,0012,0011,0010,0009,0008,0007,0006,0005,0004,0003,0002,0001,0000&Channel=A

Make a new script with this syntax, give it any name, and call the script.

Or create a shortcut and fill it as pictured. 2024-05-26 14_41_49-Window.png (20kb) downloaded 0 time(s).

The function will playback events across all your replay banks.
If there is no 100th replay event (0099) yet, it will skip to the next highest ID (0098) etc.

Happy streaming!
Cheers,
Arie
doggy  
#2 Posted : Sunday, May 26, 2024 11:50:13 PM(UTC)
doggy

Rank: Advanced Member

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

Thanks: 288 times
Was thanked: 942 time(s) in 778 post(s)
Nice

Guess myself i hate typing long list of numbers ;-)

Code:
Dim TheValue as string = ""
dim i as integer
 
for i  = 99 to 1 step -1
   TheValue += i.ToString("D4") & ","
next

API.Function("ReplayPlayEventsByIDToOutput",Channel:="Current",Value:=TheValue)
thanks 1 user thanked doggy for this useful post.
Ario on 5/27/2024(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.