0

ext3 sync gone! (2x hd210) URGENT!



hi there, last week i bought 2x hd210 and prepared the sdcards like i used to do: format to ext3, and copy my content (videofile 8gb + script for master and slave) What happened, The don't sync anymore!!!!!! the problem is the new firmware probably. Why did you change the code? Please help, killing deadline!!!! (it's almost midnight here in amsterdam. and my breans are bouncing about a sulution) oskar van den belt NIMk postproduction, Amsterdam scripts: master: 'v 08-12-09 debug = false EnableZoneSupport(true) videoFile1 = "Clip1.mpg" nc = CreateObject("roNetworkConfiguration", 0) nc.SetIP4Address("192.168.1.10") nc.SetIP4Netmask("255.255.255.0") nc.SetIP4Broadcast("192.168.1.255") nc.SetIP4Gateway("192.168.1.1") nc.Apply() sender = CreateObject("roDatagramSender") sender.SetDestination("255.255.255.255", 11167) v = CreateObject("roVideoPlayer") i=CreateObject("roImagePlayer") p = CreateObject("roMessagePort") v.SetPort(p) mode=CreateObject("roVideoMode") mode.SetMode("1920x1080x60p") i.DisplayFile("logo.png") sleep(10000) 'goto check_ready_status start: sender.Send("pre") v.PreloadFile(videoFile1) sleep(100) sender.Send("ply") i.StopDisplay() v.Play() listen: msg = wait(0,p) if type(msg) = "roVideoEvent" and msg.GetInt() = 8 then goto start endif goto listen -------------------------------------------- slave: rem v1 8-12 EnableZoneSupport(true) videoFile1 = "Clip2.mpg" mode=CreateObject("roVideoMode") mode.SetMode("1920x1080x60p") nc = CreateObject("roNetworkConfiguration", 0) nc.SetIP4Address("192.168.1.11") nc.SetIP4Netmask("255.255.255.0") nc.SetIP4Broadcast("192.168.1.255") nc.SetIP4Gateway("192.168.1.1") nc.Apply() receiver = CreateObject("roDatagramReceiver", 11167) i = CreateObject("roImagePlayer") v = CreateObject("roVideoPlayer") sleep(200) v.PreloadFile(videoFile1) preloaded = true i.DisplayFile("logo.png") p = CreateObject("roMessagePort") receiver.SetPort(p) listen: msg = wait(2000,p) if type(msg) = "roDatagramEvent" then command = left(msg, 3) if command = "pre" then if not preloaded then print "PreloadFile" v.PreloadFile(videoFile1) preloaded = true endif elseif command = "ply" then if preloaded then print "Play" i.StopDisplay() v.Play() preloaded = false endif else print msg endif else print "*" endif goto listen

5 comments

  • 0
    Avatar
    RokuLyndon


    someone else had reported a possible issue with sync and firmware, but we can't duplicate. All of our sync projects run fine on all releases we've tested. What firmware are you running? Can you update both units to 3.7.44, beta from the website, and test.  Is the 3rd digit on both units the same, same rev?

    As I said, we tested a number of combinations when someone suggested there was a firmware sync issue, and we can't find any.
  • 0
    Avatar
    RokuLyndon


    You could try increasing the time between your pre and play. 100ms might not be enough time. Try increasing to 300ms or 500ms.
  • 0
    Avatar
    Oskar


    i was downgrading the firmware, with testing my 2 new hd210 units with my ext3 cards who were working with former units.
    no luck, now i'm upgrading to 3.7.44 again.

    i'll let you know asap

    oskar
  • 0
    Avatar
    Oskar


    well, i've upgraded the units with the latet beta firmware. changed the value, and:

    with a small mpg on both units, it's ok. sync is ok (same movie), BUT,
    with an 1gig h264 mov the sync is not there.
    what can i do?

    oskar



    i'll let y
  • 0
    Avatar
    Oskar


    i've increased the time between preload and play, and ..... it works ok

    thanks

    oskar
Please sign in to leave a comment.