Questions tagged [xuggle]

A free open-source library for Java developers to uncompress, manipulate, and compress recorded or live video in real time.

A free open-source library for Java developers to uncompress, manipulate, and compress recorded or live video in real time. http://www.xuggle.com/

159 questions
0
votes
0 answers

extract 90 seconds with xuggle

I put together some code , using xuggle, to extract 90 seconds from an mp4. Problem is I am producing 2 files just to get this done. Is there a better way for me to do this? Here is my code: IMediaReader reader = ToolFactory.makeReader(fileName); …
user1098063
0
votes
1 answer

\[exec\] POD document had syntax errors at /usr/bin/pod2man line 71

I hope you are fine and all is well, I'm trying to install Xuggle on Ubuntu 14.04. I'm using g++ (Ubuntu 4.8.4-2ubuntu1~14.04) 4.8.4 Linux xxxxx-HP-EliteBook-820-G1 3.13.0-67-generic #110-Ubuntu SMP Fri Oct 23 13:24:41 UTC 2015 x86_64 x86_64…
Allal
  • 1
  • 1
0
votes
1 answer

java.awt.image.RasterFormatException: Data array too small (should be > 388799 )

I am trying to do some image manipulation using IConverter class which is included in Xuggle library to convert the images from IVideoPicture type to BufferedImage type but am encountering the error in the title. Here is my code: BufferedImage…
0
votes
1 answer

mediaReader.readPacket() blocks while trying to read rtsp stream in Xuggler

I am trying to download a video (with a Xuggler 5.4 library) from rtsp stream to a file using the code below. String inputSource = "rtsp://[ip-address]:[port]/user=[username]&[password]=password&channel=1&stream=1.sdp"; String…
user3601262
  • 651
  • 1
  • 7
  • 22
0
votes
1 answer

xuggler in java For merging or concatenating 2 or more videos gives RuntimeException: failed to encode audio

i am working in java. I want to merge or concatenate 2 or more videos into single video so that they can play one after another. I have found the code related to this using xuggler. In below link the whole code is…
Kamini
  • 690
  • 2
  • 13
  • 36
0
votes
1 answer

Accessing BufferedImages to update JFrame components

Basically, I am extracting images from a video in realtime as BufferedImages and displaying them within a JFrame after processing. Unfortunately I am very bad with swing, so while the images show up within the JFrame as intended, it spawns a new…
dust2
  • 3
  • 1
0
votes
2 answers

IContainer.open() fails when using with custom ByteChannel to read from

I am trying to open an IContainer object which is reading from a custom input buffer rather than reading from a media file. The implementation for this custom input buffer is as below. The code to create and open the container is as below. // Open…
AnilJ
  • 1,951
  • 2
  • 33
  • 60
0
votes
1 answer

Xuggler "Could not write header" error

I am making a screen recording application with Xuggler. I've basically encapsulated Java Code Geeks' Xuggler tutorial code into a runnable class for the actual recording. It should run just like the tutorial, but I'm getting some (actually a ton…
D.T.F.
  • 68
  • 7
0
votes
1 answer

Xuggler not working with webapp

Hi i am trying to use Xuggler with my web app in which i am trying to convert a video file from one format to another.For a desktop java app i am able to do so but for the web app i am getting the following error frontend.DownloadServlet…
Deb
  • 2,431
  • 3
  • 18
  • 28
0
votes
1 answer

How to record video from webcam in a lossless format?

I'm trying to write an application which can record video in a lossless format. For this purpose I use Webcam-Capture and Xuggler libraries. Everything works but the outout video has the following artifacts: And this is observed not at all frames,…
Eugene
  • 1,037
  • 4
  • 20
  • 34
0
votes
1 answer

No xuggle in java.library.path on Redhat

I have a standalone java program which uses Xuggle to do video conversion. The version of Xuggle is xuggle-xuggler-5.4.jar. I have added it to build path. The java program works fine on Fedora Linux localhost.localdomain 3.6.10-4.fc18.x86_64 #1…
Grace
  • 5
  • 1
  • 4
0
votes
0 answers

How to add controls into xuggler video

Alright,I used an example code for xuggler which creates a java swing frame which reproduces video and audio from a certain file.I also embedded the code into another application though.Had to make a thread out of it in order to avoid the heap out…
0
votes
1 answer

How to capture live audio via RTMP using xuggler?

I am trying to live microphone stream (SPEEX codec) using xuggler but I am getting warning that codec as null. What is fix for this issue? public void audioCapture(String streamName, String sessionId) { IContainer readContainer =…
user1595858
  • 3,700
  • 15
  • 66
  • 109
0
votes
2 answers

images to video Xuggler

I use xuggler but not understand that.I have ArrayList and I want make from this images, video. But when I compile this code first 5 second on video image not change and last 5 second on video not at all. How fix it. public class…
0
votes
1 answer

Rendering video on Swing

I am developing application to monitor 20 video streams at a time. I will have JFrame, and 20 boxes (e.g JPanel) inside JFrame to display 20 streams. I am able to load stream and decode using xuggler, but now how can I display this over Swing…
nullptr
  • 3,320
  • 7
  • 35
  • 68
1 2 3
10
11