I've got an audio video box thing I made using GEM, I'll post it up when I get home.
In the meantime, you should look at the GEM objects like [pix_film].
You won't get sound out of [pix_film] just the video, so you have to:
-
load the sound separately into an array (or table)
(use [tabplay~] to play the sound).
-
load up the video into [pix_film] (read the help patch)
don't use auto 1 to play it, you can use a metro to increment the frames
(e.g. use [metro 33] for a video running at 30 frames a sec)
-
bang the metro and the tabplay at the same time
That's the simplest way...it's a bit more advanced to synch the audio and video so that you can scrub them both at the same time...but it's definitely possible.
-Kai