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)
   JMyron setInput() and QTJava
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: JMyron setInput() and QTJava  (Read 597 times)
st33d

WWW Email
JMyron setInput() and QTJava
« on: Feb 3rd, 2005, 5:16pm »

I'm trying to see if I can get JMyron to work but I'm recieving this error:
Code:

java.lang.UnsatisfiedLinkError: no QTJava in java.library.path
 
 at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1403)
 
 at java.lang.Runtime.loadLibrary0(Runtime.java:788)
 
 at java.lang.System.loadLibrary(System.java:832)
 
 at quicktime.jdirect.JDirectLinker$1.run(JDirectLinker.java:266)
 
 at java.security.AccessController.doPrivileged(Native Method)

 
I'm trying to redirect the video input with setInput(), but when I so much as say:
Code:

void setup(){
  size(320,240);
 try{
    quicktime.QTSession.open();
   // quicktime.std.sg.SequenceGrabber sg = new quicktime.std.sg.SequenceGrabber();
   // quicktime.std.sg.SGVideoChannel sc  = new quicktime.std.sg.SGVideoChannel(sg);
   // quicktime.std.sg.VideoDigitizer vd  = sc.getDigitizerComponent();
   // vd.setInput(2);
  } catch (Exception e) {
    e.printStackTrace();
  }

 
I get the error. Works fine without trying to access QTJava but I don't really want to do motion capture from my TV card. Note: this error only appears with the JMyron class in the code folder and the JMyron folks haven't responded to questioning.
 

I could murder a pint.
Pages: 1 

« Previous topic | Next topic »