xuggle jar file not working as a dependent jar

515 Views Asked by At

I read about xuggle library
I am trying to let xuggle library work as a single jar file without any external use of any dll files or environmental variables
I read all errors that was in installing xuggler and tried all and the same exception is still shown

Could not load library: xuggle-xuggler; version: 5;

I also tried using xuggler in maven and also same error

<dependency>
    <groupId>org.boofcv</groupId>
    <artifactId>xuggler</artifactId>
    <version>0.16</version>
</dependency>

Caused by: java.lang.UnsatisfiedLinkError: no xuggle-xuggler in java.library.path

Some questions and answers i followed and no result found

ERROR com.xuggle.ferry.JNILibraryLoader - Could not load library: xuggle-xuggler; version: 3; Xuggle and java library path How do I have to install/configure Xuggle to not get an UnsatisfiedLinkError? Could not load library: xuggle; version: 5; Using POM

1

There are 1 best solutions below

4
Yash Capoor On

On the xuggler downloads page, it talks about the current version being 5.2 (though reading elsewhere leads me to believe 5.4 is out as well). Your dependency is asking for version 0.16, with a different groud and artifact ID.

 <dependency>
   <groupId>xuggle</groupId>
   <artifactId>xuggle-xuggler</artifactId>
   <version>5.2</version>
  </dependency>

Are you sure you have the correct dependency? Have you added the xuggler repository as well?

<repository>
   <id>xuggle repo</id>
   <url>http://xuggle.googlecode.com/svn/trunk/repo/share/java/</url>
  </repository>

Edit: This library has been deprecated. See github.