gpt4 book ai didi

java - xuggle jar 文件不能作为依赖 jar

转载 作者:行者123 更新时间:2023-12-04 16:19:58 25 4
gpt4 key购买 nike

我读到了 xuggle图书馆
我试图让 xuggle 库作为单个 jar 文件工作,而无需任何外部使用任何 dll 文件或环境变量
我阅读了安装 xuggler 时出现的所有错误并尝试了所有错误,但仍然显示相同的异常

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

我也试过在 maven 中使用 xuggler 也是同样的错误

<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

我关注的一些问题和答案没有找到结果

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

最佳答案

关于xuggler downloads page ,它谈到当前版本是 5.2(尽管阅读其他地方让我相信 5.4 也已经出来了)。您的依赖项要求版本 0.16,具有不同的地面和工件 ID。

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

你确定你有正确的依赖关系吗?您是否也添加了 xuggler 存储库?

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

编辑:该库已被弃用。参见 github .

关于java - xuggle jar 文件不能作为依赖 jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38203153/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com