how to make movie object play mov fullscreen?
Hello all,
I want to switch movie files in realtime.
so...
Is there a way to make movie object(from Max) to play quicktime movie in fullscreen?
Or how to make jit.qt.movie to perform a function like movie object's switch message?
Thanks for any help!
-- ayrtbh
if you're using jit.window, fullscreen $1 message will toggle back and forth to fullscreen. with jit.pwindow it won't do it automatically, but you can set the size (just like any object) with patching_rect $1 $2 $3 $4, or in the case of jit.pwindow, the size $1 $2 message.
You could have a patch with a jit.pwindow in it, then use a toggle to go fullscreen (message to thispatcher), and resize the jit.pwindow to fit. But to make things simplest just use jit.window.
seejayjames,
Thanks for the reply!
But if I use jit.window, I have to use jit.qt.movie to playback the videos. Then dose jit.qt.movie have a message like imovie(object from Max)'s switch? Because I want to switch videos realtime,and present this in fullscreen.
So it's like:
realtime video switching & fullscreen
Thank you again for the reply!
-- ayrtbh
ah
you're using the imovie object , never used that
how do you do movie switching with that imovie object?
can you post a patch?
Hi
Using the thispatcher object and Presentation Mode can get you almost fullscreen, like this:
you just need to resize imovie to fit your screen in Presentation Mode.
Or with jit.qt.movie and jit.window:
/mattias