I am building a java application in netbeans and I added a the jvlc-0.9.0-20080309-linux_x86-32.jar to the project.
However when i tryied to run the application i got this:
Code: Select all
Exception in thread "Thread-1" java.lang.UnsatisfiedLinkError: Unable to load library 'libvlc-control': liblibvlc-control.so: cannot open shared object file: No such file or directory
at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:114)
at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:157)
at com.sun.jna.Library$Handler.<init>(Library.java:123)
at com.sun.jna.Native.loadLibrary(Native.java:260)
at com.sun.jna.Native.loadLibrary(Native.java:246)
at org.videolan.jvlc.internal.LibVlc.<clinit>(LibVlc.java:41)
at org.videolan.jvlc.JVLC.<init>(JVLC.java:45)
at stmodwapp.control.ModuleVS3.run(ModuleVS3.java:167)
at java.lang.Thread.run(Thread.java:619)
Is there anything i must do before using jvlc.xxxxxx.jar ??
Thanks for your help
Best regards
kobe08