I am trying to work with xuggler
with maven.
I included the dependency and repository adds from the xuggler
site: xuggle download.
But I had some additional problems and added the dependencies for slf4j-api-1.6.4.jar
, commons-cli-1.1.jar
, logback-core-1.0.0.jar
, logback-classic-1.0.0.jar
as mentioned in this answer ERROR com.xuggle.ferry.JNILibraryLoader .... In the above I did not include the xuggle-utils-1.20.688.jar
since I could not find a maven dependency for this (do I need this anyway).
Now the error I am getting is java.lang.UnsatisfiedLinkError: no xuggle in java.library.path
which if I am interpreting correctly mean the system cannot find xuggle
library? Since I am using win7 that means something like xuggle.dll
or libxuggle.dll
I guess. So am I suppose to download another jar (like the xuggle-utils-1.20.688.jar
mentioned before for example)?
For completeness the example I am trying to compile is in here xuggle example.
Do I have to declare something to the java.library.path
(which I have no idea how to do it)?