You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know this has been brought up before under issue #70 with changing the guava version to 18.0 or above, however I'm experiencing the same problem using Guava version 33.3.1.
Exception in thread "main" java.lang.NoClassDefFoundError: net/bramp/ffmpeg/FFmpeg
at main(Main.java:9)
Caused by: java.lang.ClassNotFoundException: net.bramp.ffmpeg.FFmpeg
at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
... 1 more
I've been having this issue before so all I've done so far is this
import net.bramp.ffmpeg.*;
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {
System.out.println("test");
FFmpeg ffmpeg = new FFmpeg("/opt/homebrew/Cellar/ffmpeg/7.1_4/bin/ffmpeg");
FFprobe ffprobe = new FFprobe("/opt/homebrew/Cellar/ffmpeg/7.1_4/bin/ffprobe");
}
}
and included it in my pom.xml as what it says on the readme file
I know this has been brought up before under issue #70 with changing the guava version to 18.0 or above, however I'm experiencing the same problem using Guava version 33.3.1.
pom.xml:
Hopefully this is just a small error made by my stupidity.
The text was updated successfully, but these errors were encountered: