简体   繁体   中英

xuggle jar file not working as a dependent jar

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

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 .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM