Graphics

 View Only
  • 1.  Visual countdown queue for Master Control show Producer from XPression Studio...

    Posted 09-21-2015 14:17
    Has anyone set up a way for a show producer, who is NOT sitting by the XP operator, to see a countdown, in seconds, of animations as show opens played out of XPression Studio?

    Any ideas or recommendations would be appreciated.

    Thanks.

    Anthony


  • 2.  RE: Visual countdown queue for Master Control show Producer from XPression Studio...

    Posted 09-24-2015 15:05
    The only way I can think to do this would be to write an API app that read the current frame of an animation that is online in the XPression framebuffer. So this would have to be a standalone app that someone would have to create.

    #XPression


  • 3.  RE: Visual countdown queue for Master Control show Producer from XPression Studio...

    Posted 09-24-2015 15:26
    Youc could create a virtual output, a scene "Coutdown" with one text object, then by scripting ("onrender" of the scenes with your main animation), get the scene "Countdown" on framebuffer linked to your virtual output, and update the text object...

    Put this virtual output on your second screen (you need one), which is displayed front of your producer.

    #XPression


  • 4.  RE: Visual countdown queue for Master Control show Producer from XPression Studio...

    Posted 09-24-2015 15:28
    That would work, but an OnRender script that is checking the current frame of an animation is probably going to effect system performance very negatively.

    #XPression


  • 5.  RE: Visual countdown queue for Master Control show Producer from XPression Studio...

    Posted 09-24-2015 15:34
    I'll already do some script in onrender, and I don't see this.

    But each time, I added a condition to update only when I need. In this example, I'll add something like

    if FieldNumber Mod 25 = 0 then

    'Update here the text object

    end if


    Where 25 is your framerate...

    #XPression


  • 6.  RE: Visual countdown queue for Master Control show Producer from XPression Studio...

    Posted 09-24-2015 15:39
    Cool!
    ..........
    #XPression