xuggler

Guide to compile Xuggler for Raspberry Pi

夙愿已清 提交于 2019-12-09 20:24:53
问题 Can someone post a detailed write up, on how to compile Xuggler for Raspberry Pi? 回答1: After working on for about 5 days , I am putting the following guide to compile xuggler for Raspberry Pi (Time required : 8 hrs): Prerequisites: Raspberry Pi Model B+ with 512 MB RAM (Any model less than this will not give you the compiled binaries and will stuck during compilation) Raspbian installed on an SD Card (more than 4GB SD card will do) Steps: Switch to 'root' user. From the Basic xuggler build

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

Display progress bar while compressing video file

孤人 提交于 2019-12-08 04:13:48
问题 I have to compress video files. So I used this link http://whaticode.com/tag/audio/ and xuggler for the compression. Now I want to show the progress bar while compressing the video file in javafx. import java.io.File; import com.xuggle.mediatool.IMediaReader; import com.xuggle.mediatool.IMediaWriter; import com.xuggle.mediatool.MediaToolAdapter; import com.xuggle.mediatool.ToolFactory; import com.xuggle.mediatool.event.AudioSamplesEvent; import com.xuggle.mediatool.event.IAddStreamEvent;

Can't encode video with Xuggler

荒凉一梦 提交于 2019-12-07 20:14:57
问题 I'm trying to create simple application with Xuggler, which has to encode sequence of pictures into video. I've installed xuggler, as described in official site. Here is example of code (which I've actually found on Xuggler wiki site) import java.awt.Color; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.xuggle.mediatool.IMediaViewer; import com.xuggle.mediatool.IMediaWriter; import com.xuggle.mediatool

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 and playing from live stream

痴心易碎 提交于 2019-12-06 05:51:33
问题 We're currently busy with a project in which we are trying to play a video file in a window from a live stream in Java. We've already managed to capture the stream via a Socket object using an InputStreamReader. The next step is using an existing library (Xuggler) or code to decode this stream and display the contents (video) in a simple window. The stream originates from the Parrot AR Drone 2.0 via IP address 192.168.1.1:5555. That's where we got stuck. The code we're trying to use is the

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

Display two videos together then output as a merged video on a single screen

匆匆过客 提交于 2019-12-04 17:42:11
问题 This question may sound a little bit complex or ambiguous, but I'll try to make it as clear as I can. I have done lots of Googling and spent lots of time but didn't find anything relevant for windows. I want to play two videos on a single screen. One as full screen in background and one on top of it in a small window or small width/height in the right corner. Then I want an output which consists of both videos playing together on a single screen. So basically one video overlays another and