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
Problem with video and sound (Read 530 times)
Problem with video and sound
Feb 19th, 2008, 4:39pm
 
hi guys
i have a question,i want to play a movie,the movie have sound in QuickTime,but when video to execute in processing,
the movie become no sound,please help me,what happend?

thank you.

import processing.video.*;
Movie myMovie;
void setup() {
 frameRate(12);
 size(200, 200);
 myMovie = new Movie(this, "Default_0.mov");
 myMovie.loop();
}

void draw() {

  if(myMovie.available()) {
   myMovie.read();
 }

   image(myMovie, 0, 0);
}

Re: Problem with video and sound
Reply #1 - Aug 6th, 2008, 3:29pm
 
Hey,

I am facing the same problem as yours. COuld you figure out the solution to it ?? Is thr any way I can make the sound associated with the video play properly ??
Please let me know. I have been trying for quite some time now, but have not yet figured out any solution to this problem!! Sad

Thanks!
Page Index Toggle Pages: 1