Video place behavior using cuelist

Write here what nice effects or shows you have done with MADRIX or ask other users.

Moderator: MADRIX Team

Locked
dselected
Posts: 2
Joined: Mon Nov 25, 2013 9:11 pm

Video place behavior using cuelist

Post by dselected »

We are having trouble understanding storage place video behavior. We want to do the following for a permanent installation:
  • • Create Madrix setup with 350 videos in storage places
    • Create a cuelist with all 350 videos in a row.
    • Each video is 30 seconds long
    • We set each cue in the cuelist to 29 seconds for 1 second crossfade
    • Play the cuelist over and over such that
    • • When cue/place 1 is done playing, that video resets to beginning and waits
      • Then when we play cue/place 350 and loop around cue 1 starts from the beginning
Currently we find that when cue/places are set to play once (arrow icon) they do not play again when called. If we use looping behavior the loop is always going, and thus when we call a cue/place again it could be in the middle of a 30s segment and show a bad loop point.

I believe Madrix 2 had a different behavior in this regard. Did this change?

Any help with this is much appreciated.
Fritzsche
Support
Support
Posts: 734
Joined: Mon Oct 05, 2009 5:26 pm
Contact:

Re: Video place behavior using cuelist

Post by Fritzsche »

Yes, the behavior did change for MADRIX 3. But we will check if we bring back the original behavior with the next update.

However, we can already bring it back today using a very short Macro for the SCE Video Effect.
We can use:

@scriptname="";
@author="";
@version="";
@description="";

void InitEffect()
{
if(!GetVideoRunning())
StartVideo();
}

void PreRenderEffect()
{

}

void PostRenderEffect()
{

}

void MatrixSizeChanged()
{
InitEffect();
}
User avatar
Wissmann
Developer
Developer
Posts: 770
Joined: Fri Feb 23, 2007 3:36 pm
Location: Germany
Contact:

Re: Video place behavior using cuelist

Post by Wissmann »

One aditional hint, in MADRIX Cuelist the fade time is part of the duration time.
LEDs are nothing without control ;-)
Locked