HD1010 with oudioexpansion em 100
hello all we have a hd 1010 with the em 100 we want to do the following: play an vob file with ac3 audio in it over the em 100 optical out. we have tried it with this script: a2=createobject("roAudioPlayer") a3=createobject("roAudioPlayer") serial=createobject("roSerialPort",0,9600) p=createobject("roMessagePort") serial.SetLineEventPort(p) v1.SetPort(p) rem video mode mode=createobject("roVideoMode") mode.SetMode("1920x1080x60i") REM Settings v1.SetAudioOutput(3) v1.MapStereoOutput(1) 'expander 1 a2.SetAudioOutput(0) a2.MapStereoOutput(2) 'expander 2 a3.SetAudioOutput(0) a3.MapStereoOutput(3) 'expander 3 listen: print "rdy" msg = wait(0,p) if type(msg) = "roVideoEvent" then if msg.GetInt() = 8 then v1.StopClear() a2.Stop() a3.Stop() print "fin" goto listen endif elseif type(msg) = "roStreamLineEvent" then if msg = "play1" then goto start1 endif goto listen start1: REM It might be necessary to pad the audio files,or play some silence REM before the audio files play v1.PlayFile("video1.mpg") a2.PlayFile("audio1a.mp3") a3.PlayFile("audio1b.mp3") print "ply" goto listen but nuthing works. can brightsign play vob with integrated ac3 out over the em 100 1 what is ment by goto listen, i want autoplay and loop the ohter thing: i wan´t to play an mpeg file with 3 mp3 audiofiles (em 100 analoge out); it play´s but it is not synchron.