FAQ
Cover
This is the archive Discourse for the Processing (ALPHA) software.
Please visit the new Processing forum for current information.

   Processing 1.0 _ALPHA_
   Topics & Contributions
   Video, Camera
(Moderator: REAS)
   using ideo and sonia sound together
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: using ideo and sonia sound together  (Read 903 times)
MrHunt

Email
using ideo and sonia sound together
« on: Nov 8th, 2004, 11:56pm »

I am writing a code which will both display video and play wav files.My code is almost the following:
 
BVideo vid;
Sample mySample;
void setup(){
 
   size(320,240);
   Sonia.start();
   vid=loadVideo("deneme1.mov");
   repeat(vid);
 
}
 
void loop(){
   image(vid,0,0);
   mySample.play();
}
public void stop()
{
 
stop(vid);
Sonia.stop();
super.stop();
}
 
 
 
my code gives the following error:
 
"java.lang.UnsatisfiedLinkError: no QTJava in java.library.path"
 
 
 
 
P.s.   my code work normally when ı seperate the video and the sound part.Howevere when I bring them together the error occurs.
 
fjen

WWW
Re: using ideo and sonia sound together
« Reply #1 on: Nov 9th, 2004, 3:02pm »

post continues here:
 
http://processing.org/discourse/yabb/board_Contributions_Audiov_isual_action_display_num_1100005000.html
 
Pages: 1 

« Previous topic | Next topic »