Hey there,
At school we are working on a project for a beamershow.
We have now 2 beamers, that together will make one big widescreen.
We have 2 hd1010 players that are synched together trough the ethernet cable.
The company who provided us the beamers and the hd1010s gave us the following scripts:
on the master:
rem v1 8-12 debug = false EnableZoneSupport(true) videoFile1 = "scherm1.ts" mode=CreateObject("roVideoMode") mode.SetMode("1024x768x75p") nc = CreateObject("roNetworkConfiguration", 0) nc.SetIP4Address("192.168.2.100") nc.SetIP4Netmask("255.255.255.0") nc.SetIP4Broadcast("192.168.1.255") nc.SetIP4Gateway("192.168.2.1") nc.Apply() sender = CreateObject("roDatagramSender") sender.SetDestination("255.255.255.255", 11167) v = CreateObject("roVideoPlayer") p = CreateObject("roMessagePort") v.SetPort(p) start: sleep(2000) sender.Send("pre") v.PreloadFile(videoFile1) sleep(100) sender.Send("ply") v.Play() listen: msg = wait(0,p) if type(msg) = "roVideoEvent" and msg.GetInt() = 8 then goto start endif goto listen On the slave: rem v1 8-12 debug = false EnableZoneSupport(true) videoFile1 = "scherm2.ts" mode=CreateObject("roVideoMode") mode.SetMode("1024x768x75p") nc = CreateObject("roNetworkConfiguration", 0) nc.SetIP4Address("192.168.2.101") nc.SetIP4Netmask("255.255.255.0") nc.SetIP4Broadcast("192.168.1.255") nc.SetIP4Gateway("192.168.2.1") nc.Apply() receiver = CreateObject("roDatagramReceiver", 11167) v = CreateObject("roVideoPlayer") v.PreloadFile(videoFile1) preloaded = true p = CreateObject("roMessagePort") receiver.SetPort(p) listen: msg = wait(0,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" v.Play() preloaded = false endif else print msg endif endif goto listen That how we got them.
Now I've managed to put my own movie in, using a mpg movie.
But my questions is:
- Can I make a videoplaylist, that will be shuffled, and still syncing to the other hd1010?
The way I think this can be done is making a big widescreen movie, chop them in half in the right resolution, do the left part in de left hd1010, and the right part in the right hd1010, but giving them both the same name.
And then tell the master to shuffle the playlist, and that the slave will follow, by choosing the movie with the same name
And some technical questions:
Is the highest resolution through VGA 1360x768 (60p) ?
Does that mean that the footage I create must be 60 frames per second? (we don't film anything, all CG)
They gave us 4GB flash card for in the players, can we exchange them for bigger ones, like 32GB?
Is there a maximum in the amount of movies in a playlist?
If you can give answer to only one question that's fine too, I'm looking forward to your replies.
greets,
Bhacko