Graphics

 View Only
  • 1.  take next scene in sequencer triggered by script in current scene

    Posted 07-21-2017 19:51
    Is it possible in the sequencer to accurately trigger the next scene by using a script on a scene director timeline? I mean frame accurate.


  • 2.  RE: take next scene in sequencer triggered by script in current scene

    Posted 07-21-2017 20:40
    Does it have to be the next item in the sequencer? Or can it be a static take item in the sequencer?
    If you want to trigger a static take item # then yes it would be possible.,
    If you want it to be the next item in the list of the trigger scene that is harder.

    Hmmm...maybe if we use the keyboard take next shortcut...
    Possibly you could have the scene director event trigger "take next" in the sequencer - so it would take the highlighted item and move down again. Only way to do that is to have the scene director event send a RossTalk Take Next message back into the XPression, might not be super frame accurate though.
    #XPression


  • 3.  RE: take next scene in sequencer triggered by script in current scene

    Posted 07-21-2017 22:00
    thanks for the head scratch Garner. Without going into a month of detail, we want to animate from scene to scene but have total modularity so we can drag and drop random scenes into the sequencer to play out in 3d BUT the scenes would need to match up frame accurate.
    #XPression


  • 4.  RE: take next scene in sequencer triggered by script in current scene

    Posted 07-24-2017 15:41
    Would have to go with the scene director event spitting out a RossTalk Take Next command back into the same XPression then.

    Edit > Hardware Setup > GPI Boards > RossTalk > configure the Outgoing Network Settings to be IP of the XPression system


    Script in the Scene Director:

    dim rosstalk as xpGPIBoard
    Engine.GetGPIBoard(0, rosstalk)
    rosstalk.SendMessage("NEXT")

    'The "0" in the GetGPIBoard is the index of the GPI board in Hardware Setup > GPI Boards
    '(Board #1 = Index 0, Board #2 = Index 1, etc..)

    All XPression RossTalk Commands:
    https://rossvideoltd.sharepoint.com/sites/marketing/communications/_layouts/15/guestaccess.aspx?docid=0677c14e1c6ff4bff9479204b29adfe3f&authkey=ARDdRVKWx6Y3Eg4-6Zh8_sc
    #XPression


  • 5.  RE: take next scene in sequencer triggered by script in current scene

    Posted 07-25-2017 17:42
    Thanks garner, I'll dive into this one.
    #XPression


  • 6.  RE: take next scene in sequencer triggered by script in current scene

    Posted 07-28-2017 17:34
    Garner, this worked once I put rosstalk.SendMessage("READ") after the NEXT message. Now that that is solved, it only brings up a dozen more problems.

    Thanks Garner
    #XPression


  • 7.  RE: take next scene in sequencer triggered by script in current scene

    Posted 07-28-2017 17:40
    Good. Is it frame accurate enough?
    #XPression


  • 8.  RE: take next scene in sequencer triggered by script in current scene

    Posted 07-31-2017 15:44
    We haven't done the final design but I think we can build a frame or two into the design so that this will work. Thanks again.
    #XPression


  • 9.  RE: take next scene in sequencer triggered by script in current scene

    Posted 08-01-2017 15:39
    One last question, Garner. Will this cause any communication conflict with our switcher?
    #XPression


  • 10.  RE: take next scene in sequencer triggered by script in current scene

    Posted 08-01-2017 16:18
    No, it should be fine. If issues do arise you can just add a second RossTalk GPI Board to XPression and have the switcher use one and the scripts use the other. But I think it's very unlikely you'll have any problems.
    #XPression