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
2
votes
1 answer
Xuggler Video To Audio conversion
I am converting video to audio using Xuggler library in Java. There are no errors or exceptions arising in the program but the audio file generated is 0 Kb. Could someone fix the problem?
Environment: Eclipse Helios, OS: Windows 7
External JAR…

baba
- 55
- 1
- 6
2
votes
1 answer
Guide to compile Xuggler for Raspberry Pi
Can someone post a detailed write up, on how to compile Xuggler for Raspberry Pi?

Ashish Sharma
- 1,124
- 2
- 24
- 49
2
votes
2 answers
How to convert .mov, .avi, .wmv to mp4
I'm new of xuggler. I'm willing to convert .mov, .avi, .wmv to mp4 using xuggler. .mov and .wmv convert to flv first and then convert to mp4. It worked. but I want to directly convert to mp4. But avi neither converts to flv nor mp4. I use the simple…

user2310338
- 21
- 1
- 3
2
votes
1 answer
How to build xuggler for Android?
I need to split frames from video and get the different images in Android API for that I had gone with the help of SDK Mediamatadatareteriver.
Duration of video is 127040(2:07sec) I splited as 32 frames but the problem in that was it repeats the…

Manoj
- 3,947
- 9
- 46
- 84
2
votes
1 answer
Xuggler decoding h264 issues
I'm trying to use Xuggler to transcode IP Camera rtsp streams to rtmp streams (all with h264 codecs). I currently have 2 IP cameras to test with, and wrote a basic Java program using Xuggler to do the transcoding of these streams.
Here's snippet of…

Valenthorpe
- 73
- 10
2
votes
0 answers
Xuggler retrieve audio Samples for each channel from video
I use Xuggler and the DecodeAndPlayVideo demo, and it works great.
Now I would like retrieve each sample from each channel audio to do another process after.
I would Like a solution like this (or other):
IAudioSample channelRight
IAudioSample…

warn974
- 80
- 7
2
votes
1 answer
Could not load library: xuggle; version: 5; Using POM
I'm attempting to use Xuggle and when trying to deploy, I'm getting the following error, below that is my POM file. Hopefully someone can tell me what I'm missing
13:55:34.965 [main] ERROR com.xuggle.ferry.JNILibraryLoader - Could not load…

ist_lion
- 3,149
- 9
- 43
- 73
2
votes
1 answer
Screen Capture in separate thread making Java application slow/unresponsive
I'm working on an application that records the users screen, webcam and microphone whilst he/she is performing certain activities. It will be used for research purposes. The application has been successfully tested on Windows, but on Mac OS X…

Luke
- 409
- 3
- 12
2
votes
2 answers
JAVA - Xuggler - combine an MP3 audio file and a MP4 movie
Using JAVA and Xuggler - the following code combines an MP3 audio file and a MP4 movie file and outputs a combined mp4 file.
I want the duration of the output video to be equal to the time duration of the input video file
If I set the loop condition…

gilad s
- 475
- 8
- 16
2
votes
1 answer
Xuggler: Can we write text on video?
I need to write text on video based on time. e.g. If I have 30 seconds video then I have to write text every 5th and 20th second. Can it be possible through xuggler media api?
I have tried with ffmpeg command but am not able to write text on video.…

user2610698
- 21
- 2
2
votes
1 answer
What is correct way to get ONE screenshot/snapshot of a video using xuggler?
I want to create an image from a video using xuggler. The sample code provided generates images from video in an interval, I modified it so that it only generates one image from video. BUT, it looks like it is actually looping through the whole…

iCodeLikeImDrunk
- 17,085
- 35
- 108
- 169
2
votes
2 answers
What does bit rate do?
I want to make a video transcoder as a holiday project in Java. I was looking into the basics of video files and came across terms like containers, bit rate, bit depth and so on.
I have questions regarding bitrate.
I know bitrate is the amount…

An SO User
- 24,612
- 35
- 133
- 221
2
votes
2 answers
Fatal error detected in Eclipse when using Xuggle
I was trying to get frames from a video using Xuggle 5.4. The IDE which I use is Eclipse Juno.The last time (which was roughly one months back) when I tried, I got the frames with a gap of 5 seconds, but today when I tried to run the code I got the…

Maximin
- 1,655
- 1
- 14
- 32
2
votes
0 answers
Incorrect frame rate in video (Xuggler + MPEG 4 + H.264)
I have a problem with incorrect value of frame rate in output file, after converting. I made a really simple example to describe a problem:
public static void main(String[] args) {
// reader
IMediaReader reader =…

Vladislav Bauer
- 952
- 8
- 19
2
votes
1 answer
Does IMediaReader and IMediaWriter work in android?
I wanted to save online stream to file and I used IMediaReader and IMediaWriter in java (in PC) and it work fine read and wrote, but when i try to use it in android give the ExceptionInInitializeError. This is my code
IMediaReader reader =…

Musagil
- 145
- 1
- 2
- 12