|
Author |
Topic: using ideo and sonia sound together (Read 903 times) |
|
MrHunt
|
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.
|
|
|
|
|