Xuggler provides an easy, open source way to uncompress, modify, and re-compress any media file (or stream) which is supported in FFMPEG from Java.
Questions tagged [xuggler]
277 questions
19
votes
3 answers
How to encode images into a video file in Java through programming?
I am trying to encode some images of same resolution into a video file using, For that I have tried:
jCodec
jcodec..example description
But it is very time consuming and not a proper tool to encode large number of images and it creates a quick time…
user3751794
13
votes
2 answers
Android , Java - Rendering a video using bitmap frames to reverse a video (Xuggler)
I am having no of video frames in ArrayList. I have accessed this frames using MediaMetadataRetriever.getFrameAtTime() method over a Video file(.mp4).
i reverse the order of frames in ArrayList.
Now using this reverse ordered frame queue i…

Chaitanya Chandurkar
- 2,142
- 3
- 24
- 43
12
votes
1 answer
How to encode media file in RTP packets with Xuggler
I am building an RTSP streaming server in java using xuggler, but I'm not sure how to implement correct RTP packetization.
My current approach is to call ReadNextPacket(packet) on the input container, then craft an RTP packet with the payload filled…

sox supports the mods
- 457
- 7
- 22
12
votes
2 answers
Xuggler encoding and muxing
I'm trying to use Xuggler (which I believe uses ffmpeg under the hood) to do the following:
Accept a raw MPJPEG video bitstream (from a small TTL serial camera) and encode/transcode it to h.264; and
Accept a raw audio bitsream (from a microphone)…

IAmYourFaja
- 55,468
- 181
- 466
- 756
11
votes
4 answers
Adding xuggler dependency gives error
I want to generate single thumbnail image from video so I'm using xuggler. I tried to add its dependency and repository.
xuggle repo
…

User14141111
- 355
- 2
- 19
11
votes
3 answers
Display two videos together then output as a merged video on a single screen
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.…

Anil
- 209
- 3
- 10
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
10
votes
1 answer
Where can I find xuggler simple tutorials?
I'm making a simple messaging application for a webpage in my country. I tried to learn JMF but in my opinion it's too old and I just don't want to use it. I searched stackoverflow and it seems that xuggler is a better way to manage media. can…

jose gabriel
- 754
- 2
- 8
- 21
9
votes
2 answers
Failed to write core dump. minidumps are not enabled by default on client version of windows
I have this Java class I am trying to run using Eclipse Mars.1 IDE.
Here's the code :
import com.xuggle.mediatool.IMediaReader;
import com.xuggle.mediatool.IMediaWriter;
import com.xuggle.mediatool.ToolFactory;
import com.xuggle.xuggler.ICodec;…

seman
- 157
- 2
- 5
- 11
9
votes
1 answer
How to get Audio for encoding using Xuggler
I'm writing an application that records the screen and audio. While the screen recording works perfectly, I'm having difficulty in getting the raw audio using the JDK libraries. Here's the code:
try {
// Now, we're going to loop
…

wrahool
- 1,101
- 4
- 18
- 42
9
votes
3 answers
How do you install the latest version of Xuggler (5.4, as of 18/05/2013) in eclipse?
I have literally no clue where to start doing this. I've downloaded the necessary Jar's from the site, and done some research on how to install Xuggler in Eclipse, and everything is outdated or irrelevant.
My system is a 64-Bit Windows 8. Most…

Evared
- 93
- 1
- 1
- 7
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
1 answer
What's a good alternative to Xuggler as its development has haulted?
Xuggler has been discontinued and the maven repository no longer exists. Is there a good alternative out there for video encoding/decoding? Or will Xuggler suffice even though it has stopped being maintained?

Jake Miller
- 2,432
- 2
- 24
- 39
7
votes
2 answers
Xuggler Repository Link Broken
In my JAVA application, i am using Xuggler for ScreenCapture and other functionality. Now its a maven project so i put Xuggler as dependency in Pom.xml as told in this Link.
Now few days ago i cleaned my system, so when i again imported my project,…

Saikat Dey
- 83
- 7
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