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
17
votes
1 answer

How to transmit live video from within a Java application?

I'm trying to find ways to stream a live video generated in a Java application. The application needs to take screenshots of itself and encode these into a video stream and publish the stream. So far I have been using Xuggler (a Java library on top…
Tansir1
  • 1,789
  • 2
  • 15
  • 28
13
votes
1 answer

Media streaming basics - HTTP vs RTMP

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…
WinOrWin
  • 2,107
  • 3
  • 19
  • 25
11
votes
1 answer

What codecs does Xuggler support?

Yes, I know that the FAQ pretends to answer this, but it doesn't really. Instead it instructs you to build the project from source (and the build instructions are quite convoluted). That kind of defeats the entire point :) Let's save everyone in the…
Gili
  • 86,244
  • 97
  • 390
  • 689
10
votes
6 answers

XUGGLE ERROR: Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

I am trying to execute the following code: import com.xuggle.mediatool.IMediaReader; import com.xuggle.mediatool.IMediaWriter; import com.xuggle.mediatool.ToolFactory; public class vidcon { /** * @param args */ public static void…
1321941
  • 2,139
  • 5
  • 26
  • 49
9
votes
2 answers

Java - Xuggle - Best method to get a frame

I'm working with xuggle since one week and I wrote a method to get a frame by a video but if video is long this method takes too much time: public static void getFrameBySec(IContainer container, int videoStreamId, IStreamCoder videoCoder,…
Mark Design
  • 664
  • 1
  • 6
  • 24
9
votes
4 answers

Video Processing Library for Java

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…
abhishek
  • 817
  • 6
  • 19
  • 33
8
votes
1 answer

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

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…
Grammin
  • 11,808
  • 22
  • 80
  • 138
7
votes
1 answer

"EXCEPTION_ACCESS_VIOLATION" thrown when reading a video from a file with xuggler

I am writing java code to take in a video file in mp4 format, apply an effect to it, and then save it into a new file. The code should split the given video into its frames and store them in an array so they can each be used to build the effect.…
jjohnn91
  • 103
  • 5
7
votes
0 answers

Java library for creating thumbnail from video

We are trying to create a thumbnail from a video. We tried two third-party libraries. Those are https://github.com/bytedeco/javacv http://www.xuggle.com/xuggler/ Those are working fine. But we are trying for java built-in libraries. We found a…
Maharjun M
  • 853
  • 4
  • 11
  • 24
7
votes
1 answer

How can I build the GPL and LGPL version of Xuggle Xuggler?

Are there specific steps I can take to build the Xuggle Xuggler source code from Windows 32-bit, Windows 64-bit, Linux 32-bit, and Linux 64-bit? I've tried multiple times on multiple systems and keep getting lots of different errors. Update I spent…
11101101b
  • 7,679
  • 2
  • 42
  • 52
7
votes
2 answers

Converting Flv videos to mp4 using Xuggle?

How can flv videos be converted to Mp4 format using Xuggle? Which api methods do I need to look into? Any links / pointers would be helpful
Ali
  • 261,656
  • 265
  • 575
  • 769
6
votes
2 answers

How do I have to install/configure Xuggle to not get an UnsatisfiedLinkError?

I am JUST getting started with Xuggle and I downloaded everything into Eclipse and I included them in them in the Referenced Libraries but I made a really simple test, package com.xuggle.xuggler.demos; import com.xuggle.xuggler.IContainer; public…
Tyler Petrochko
  • 2,611
  • 4
  • 24
  • 30
6
votes
2 answers

Xuggle can't open in-memory input

I am working on a program that integrates Hadoop's MapReduce framework with Xuggle. For that, I am implementing a IURLProtocolHandlerFactory class that reads and writes from and to in-memory Hadoop data objects. You can see the relevant code…
gphilip
  • 1,114
  • 15
  • 33
5
votes
2 answers

Xuggler: IContainer.open() blocks

I am trying to open a video file with xuggle like this: if (container.open(in, null) < 0) { throw new IllegalArgumentException("could not open file: "); } The problem happened when i use mp4 file and i passed to open a…
Sceik
  • 275
  • 1
  • 3
  • 13
4
votes
2 answers

Deciphering Xuggle/ffmpeg errors (newbie)

I've recently started working with Xuggle to convert video files of various formats into corresponding FLVs (to be played on our site via jwplayer). The code I'm using is trivially simple; essentially what they show for the basic video conversion…
stpiker
  • 383
  • 1
  • 3
  • 13
1
2 3
10 11