Here is my question.
I am developing a java application, that plays mp3, avi, etc.....
So I choose jvlc, because is cross platform, so I am developing the app in netbeans plus windows, but the actual app will run in linux.
So I downloaded: http://trac.videolan.org/jvlc/wiki/download, and make this .bat:
Code: Select all
java -cp jvlc-core-0.9.0-SNAPSHOT-20080727.jar org.videolan.jvlc.example.VLCExample c:/temp/1.mp3
Code: Select all
>java -cp jvlc-core-0.9.0-SNAPSHOT-20080727.jar org.videolan.jvlc.example.VLCExample c:/temp/1.mp3
== Starting VLCExample ==
Creating a JVLC instance with args:
0) c:/temp/1.mp3
[00000018] main interface error: no interface module matched "hotkeys,none"
[00000018] main interface error: no suitable interface module
[00000001] main private error: interface "hotkeys,none" initialization failed
... done.
Exception in thread "main" java.lang.UnsatisfiedLinkError: Error looking up func
tion 'libvlc_media_new': No se encontr¾ el proceso especificado.
at com.sun.jna.Function.<init>(Function.java:126)
at com.sun.jna.NativeLibrary.getFunction(NativeLibrary.java:219)
at com.sun.jna.Library$Handler.invoke(Library.java:191)
at com.sun.jna.Native$2.invoke(Native.java:577)
at $Proxy0.libvlc_media_new(Unknown Source)
at org.videolan.jvlc.MediaDescriptor.<init>(MediaDescriptor.java:49)
at org.videolan.jvlc.example.VLCExample.main(VLCExample.java:32)
Here is a screenshot of my jvlc lib path:
Thank you for your help, in advance.
Edgar Madrigal Fallas.