We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
Page Index Toggle Pages: 1
using mutliple videos (Read 771 times)
using mutliple videos
Apr 26th, 2007, 2:59pm
 
I'm working on a project where you click on two seperate buttons to get two seperate videos. One i took of myself, one i downloaded. I had this working a few days ago, now it only seems to show a few milliseconds of the video i recorded myself. I tried another video but it didnt work. I also tried the original video for the first button and it worked. They are all .mov files.

Please help.

heres part of the code:
myMovie = new Movie(this, "steamboat.mov");                                            
myMovie.loop();                                
myMovie1 = new Movie(this, "bass.mov");                                                    
 myMovie1.loop();


Movie myMovie, myMovie1;  


void movieEvent(Movie m){
m.read();
}
Re: using mutliple videos
Reply #1 - Jun 12th, 2007, 3:22am
 
if you post more/all of your code it would be easier to help
Re: using mutliple videos
Reply #2 - Jun 12th, 2007, 3:32am
 
Adam,

If you check here :

http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Video;action=display;num=1180961743

I have posted a sketch code i wrote based on FasterMovie to display videos in Processing.

Your videos playback will be faster/smoother with this procedure.

Hope this help.
Page Index Toggle Pages: 1