ACABO estoy Primeros pasos con Xuggle y he descargado todo en Eclipse y las incluí en ellos en las bibliotecas de referencia, pero hice una prueba muy sencilla,¿Cómo debo instalar/configurar Xuggle para no obtener un UnsatisfiedLinkError?
package com.xuggle.xuggler.demos;
import com.xuggle.xuggler.IContainer;
public class getContainerInfo {
public static void main (String [] args){
IContainer myContainer = IContainer.make();
}
}
y que arroja un montón de errores,
2011-06-12 16:26:52,142 [main] ERROR com.xuggle.ferry.JNILibraryLoader - Could not load library: xuggle-xuggler; version: 3; Visit http://www.xuggle.com/xuggler/faq/ to find common solutions to this problem
Exception in thread "main" java.lang.UnsatisfiedLinkError: no xuggle-xuggler in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1734)
at java.lang.Runtime.loadLibrary0(Runtime.java:823)
at java.lang.System.loadLibrary(System.java:1028)
at com.xuggle.ferry.JNILibraryLoader.loadLibrary0(JNILibraryLoader.java:265)
at com.xuggle.ferry.JNILibraryLoader.loadLibrary(JNILibraryLoader.java:168)
at com.xuggle.xuggler.XugglerJNI.<clinit>(XugglerJNI.java:19)
at com.xuggle.xuggler.IContainer.<clinit>(IContainer.java:1457)
at com.xuggle.xuggler.demos.getContainerInfo.main(getContainerInfo.java:9)
mybe esto ayudará - http://stackoverflow.com/questions/957700/how-to-set-the-java-library-path-from-eclipse – bigoldbrute
El seguimiento de pila sugiere: _ "Visita http://www.xuggle.com/xuggler/faq/ para encontrar soluciones comunes a este problema "_. ¿Hiciste eso? –
Lo tengo. Me olvidé de seguir algunos pasos en el proceso de instalación. ¡Muchas gracias! –