xuggle

Video Creation from a set of images with xuggler

时光毁灭记忆、已成空白 提交于 2019-12-08 20:07:30
I have been looking for a solution everywhere! On this website and on others. I have found some interesting things, but they didn't solve my problem. I will explain it. I have one video, I grad each frame of it with xuggler. When I get all the frames I edit all of them with a color algorithm. Also, I store the audio in an mp3 file. Now I need to create a video from all the frames, this video, of course, should have the same characteristics as frame rate e duration. After that I have to merge the audio. I have done the first part, but I don't know how to create a video with the same

Using xuggle without installing for a java web application

依然范特西╮ 提交于 2019-12-08 14:18:23
I have created a Screencast applet for WIndows OS. The applet uses xuggle to encode and decode videos. It gives the following error when xuggle is not installed on the system as it tries to load some native code: 2012-07-29 12:40:28,452 [AWT-EventQueue-2] ERROR com.xuggle.ferry.JNILibraryLoader - Could not load library: xuggle-ferry; version: 3; Visit http://www.xuggle.com/xuggler/faq/ to find common solutions to this problem Exception in thread "AWT-EventQueue-2" java.lang.UnsatisfiedLinkError: no xuggle-ferry in java.library.path at java.lang.ClassLoader.loadLibrary(Unknown Source) at java

Using xuggle without installing for a java web application

人盡茶涼 提交于 2019-12-08 06:40:16
问题 I have created a Screencast applet for WIndows OS. The applet uses xuggle to encode and decode videos. It gives the following error when xuggle is not installed on the system as it tries to load some native code: 2012-07-29 12:40:28,452 [AWT-EventQueue-2] ERROR com.xuggle.ferry.JNILibraryLoader - Could not load library: xuggle-ferry; version: 3; Visit http://www.xuggle.com/xuggler/faq/ to find common solutions to this problem Exception in thread "AWT-EventQueue-2" java.lang

Xuggler not converting a .webm file?

北慕城南 提交于 2019-12-07 18:16:46
问题 I'm trying simply to convert a .mov file into .webm using Xuggler, which should work as FFMPEG supports .webm files. This is my code: IMediaReader reader = ToolFactory.makeReader("/home/user/vids/2.mov"); reader.addListener(ToolFactory.makeWriter("/home/user/vids/2.webm", reader)); while (reader.readPacket() == null); System.out.println( "Finished" ); On running this, I get this error: [main] ERROR org.ffmpeg - [libvorbis @ 0x8d7fafe0] Specified sample_fmt is not supported. [main] WARN com

Xuggler not converting a .webm file?

牧云@^-^@ 提交于 2019-12-06 02:30:15
I'm trying simply to convert a .mov file into .webm using Xuggler, which should work as FFMPEG supports .webm files. This is my code: IMediaReader reader = ToolFactory.makeReader("/home/user/vids/2.mov"); reader.addListener(ToolFactory.makeWriter("/home/user/vids/2.webm", reader)); while (reader.readPacket() == null); System.out.println( "Finished" ); On running this, I get this error: [main] ERROR org.ffmpeg - [libvorbis @ 0x8d7fafe0] Specified sample_fmt is not supported. [main] WARN com.xuggle.xuggler - Error: could not open codec (../../../../../../../csrc/com/xuggle/xuggler/StreamCoder

How can I read a live webstream in java using xuggle? (I can do it in ffmpeg, just not xuggle)

廉价感情. 提交于 2019-12-05 04:02:36
So if I run: ffmpeg -t 10 -re -i "rtmp://170.93.143.150/rtplive/ app=rtplive/ playpath=e000990f025f0075004d823633235daa swfUrl=http://www.chart.state.md.us/video/mediaplayer/player.swf pageUrl=http://www.chart.state.md.us/video/video.asp?feed=e000990f025f0075004d823633235daa stop=5000 flashver=`LNX 11,2,202,262` live=true" test.flv -report It gives me a 5 second snapsnot of video from that webstream that gets put into test.flv. Now I would like to do the same thing in java using xuggle except everytime I try and open the container it errors out on me and sets x to -1: public IMediaReader

Alternative of xuggler for video encoding which doesnot require installaion? [closed]

﹥>﹥吖頭↗ 提交于 2019-12-04 13:15:49
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I am creating a screencast Java Web Start application. Encoding Video using xuggler requires: installing xuggler on the client system - Which is tedious. (OR) Using xuggle-xuggler.jar version 5.2 or above whose size is around 35 MB plus. - this increases the time required for the application to load. Is there any other alternative in which installation is not required as well jars are not so huge. I

Media streaming basics - HTTP vs RTMP

ぃ、小莉子 提交于 2019-12-03 03:55:01
问题 I am very new to media streaming, and I have some basic doubts to clear : As far as I can understand, the difference between HTTP streaming (say through Apache) and a RTMP streaming (through Red5) is that streaming servers provide buffering and advance controls like seek, etc. Am I right ? Can I stream only flash videos from RTMP servers like Red5 ? If I have to stream varying formats of files, do I have to go for HTTP streaming ? Can I use tools like xuggler to dynamically transcode files

Video Processing Library for Java

让人想犯罪 __ 提交于 2019-12-03 03:19:57
I want to extract frames from a video and apply some filters on it such as gabor/hough etc. Which Java library would be perfect for handling all kinds of video encodings? I have been looking at GStreamer, JMF, Xuggler etc. but am unable to decide which one would be the best. I'm also looking to edit the frames and make the video with the new frames. If you're looking to do low level operations such as extracting frames and manipulating them, then Xuggler would be the best choice, because the APIs are geared around this low level. It works on ffmpeg so can handle all types of video encodings.

Xuggle and java library path

隐身守侯 提交于 2019-12-01 12:37:43
I'm writing a screencast application in Java. I decided to use Xuggle to do it and I followed up the installation instructions on the xuggle wiki. I set up the PATH environment with %XUGGLE_HOME%\bin and %XUGGLE_HOME%\lib. Everything seems OK. I made this application as a RCP plugin. I tried it on the "RCP-mail" template and the plugin is working and the video is generated correctly. But when I decided to use it on a "real" application, the plug-in crashed with a strange error message: Starting Capture 2011-11-10 08:08:45,438 [Thread-5] WARN com.xuggle.ferry.JNILibraryLoader - Failure: library