-
Due to the constantly changes in FFmpeg, ffmpeg-java is no longer compatible with the last repository svn.
What is the dev plan for ffmpeg-java to sync with the last FFmpeg reposotory ?
Is there anyone working on maintening the JNA code ?.
2009-06-12 09:30:29 UTC in FMJ
-
Have you tried this ?
p.stop(); // Pause
....
p.start(); //Unpause.
2009-06-12 09:26:42 UTC in FMJ
-
I just forgot one thing, use jna.library.path instead of java.library.path.
2009-06-08 15:32:50 UTC in FMJ
-
Due to library dependency, loading of avcodec or avformat may fail even if they are all in library path.
I suggest try to initialize the library this order:
final AVUtilLibrary AVUTIL = AVUtilLibrary.INSTANCE; //load avutil library first
final AVCodecLibrary AVCODEC = AVCodecLibrary.INSTANCE; //then avcodec
final AVFormatLibrary AVFORMAT = AVFormatLibrary.INSTANCE; //and...
2009-06-08 15:26:42 UTC in FMJ
-
The same patch but for using FOBS with LWJGL.
You can found it here:
http://jerome.jouvie.free.fr/downloads/fobs-lwjgl-patch/OpenGLRenderer.java
http://jerome.jouvie.free.fr/downloads/fobs-lwjgl-patch/OpenGLFlatRenderer.java
http://jerome.jouvie.free.fr/downloads/fobs-lwjgl-patch/OpenGLVideoListenener.java
A renderer test with the display externalized, it only render the video to a...
2009-06-05 07:57:49 UTC in FFMpeg Objects - C++ & JMF bindings
-
The last distribution of FOBS seem to use an old version of OpenGL.
If some people are interested, I've modify it to use the last version of JOGL (also known as JOGL JSR-231). Cg shader has been removed too.
You can found the patch here:
http://jerome.jouvie.free.fr/downloads/fobs-jsr231-patch/OpenGLRenderer.java...
2009-06-04 10:25:24 UTC in FFMpeg Objects - C++ & JMF bindings