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
0 answers
Cannot compile xuggle-xuggler on Centos because of libx264
I am trying to compile xuggle-xuggler on my CentOS 6.3 final and am running into some troubles.
The general make in the root directory fails because no makefile is found in libx264.
So I try to go into captive/libx264/csrc and run configure once…

jlengrand
- 12,152
- 14
- 57
- 87
2
votes
2 answers
LibGDX: BufferedImage into Texture
I'm trying to play videos within a LibGDX application. I've managed to load the individual video frames sequentially into a java.awt.BufferedImage using Xuggler.
Now I'm stuck trying to get that into a LibGDX Texture. Anyone know a way to do this?
I…

aaronsnoswell
- 6,051
- 5
- 47
- 69
2
votes
1 answer
How do I download and install xuggler?
I am a bit confused on how to download xuggler, I went onto the following link to download it:
http://xuggle.googlecode.com/svn/trunk/repo/share/java/xuggle/xuggle-xuggler/5.4/
I downloaded xuggle-xuggler-5.4.jar and now am a bit confused on where…

mamta rani
- 133
- 1
- 2
- 7
2
votes
1 answer
Cannot Encode Audio files to Vorbis
I was trying to conver audio formats to ogg ( vorbis ) file using Xuggler.
First, i've attemted the very basic way to do it,
IMediaReader readermp3 = ToolFactory.makeReader(sourcefile);
IMediaWriter writer = ToolFactory.makeWriter(targetfilemp3,…

Ozan
- 206
- 1
- 4
- 13
2
votes
1 answer
Transcoding audio using xuggler
I am trying to convert an audio file with the header
Opening audio decoder: [pcm] Uncompressed PCM audio decoder
AUDIO: 44100 Hz, 2 ch, s16le, 1411.2 kbit/100.00% (ratio: 176400->176400)
Selected audio codec: [pcm] afm: pcm (Uncompressed PCM)
I…

Akshay Deo
- 528
- 1
- 6
- 22
2
votes
1 answer
Get webcams names in Xuggler library on Windows
When I using Xuggler library on computer with more than one web-camera with Windows I need use "name" of this web-cameras to select device. I means that command "vfwcap 0" select only first web-camera and command "vfwcap 1" or "vfwcap 2" not allowed…

dzav
- 545
- 1
- 10
- 25
2
votes
0 answers
Xuggler live streaming delay and high cpu usage
I'm currently using Xuggler to receive the video stream of an AR.Drone. The stream format is H.264 720p. I can decode and display the video using the following code, but the processor usage is very high (100% on dual-core 2ghz) and there is a huge…

laobeylu
- 283
- 3
- 14
2
votes
1 answer
how to create only one thumbnail from flash video with xuggler?
I"m trying to create only one thumbnail from random location from *flv video.
the code example that I found around the net wasn't really helpful. If anyone knows how to do it
or has a code or method that would do, please share/explain. Thank you.

kefet
- 721
- 1
- 12
- 20
2
votes
0 answers
How i can use xuggler to capture audio and video?
Any good code example to capture audio and video using xuggler on a local disc. Or using xuggler i can combine audio.flv file and video.flv file to a single audiovideo.flv file. Please some one help to resolve this problem. Thanks

arslaan ejaz
- 1,001
- 13
- 31
2
votes
1 answer
Runtime Exception while launching xuggle application through JWS
I get the following exception when i launch my application through JWS.But it works completely fine when launched as a standalone java application without JNLP.
Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError:…

devashish jasani
- 413
- 1
- 4
- 15
1
vote
1 answer
while installing xuggler in ubuntu 11.10 getting error message
when i am trying to install xuggler through command line i am getting error message,how to solve this,the command line out given below,the out i given here is not the full out,only the last few lines,that is after starting the installation about 15…

sajith
- 2,564
- 8
- 39
- 57
1
vote
2 answers
Xuggle build failed on ubuntu x64?
After downloading the source code from GIT hub I setup the enviroment variables
as Xuggle YouTube Video said so
export XUGGLE_HOME=/usr/local
export PATH=$XUGGLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$XUGGLE_HOME
Then I simply started the…

Mr Coder
- 8,169
- 5
- 45
- 74
1
vote
3 answers
Video Creation from a set of images with xuggler
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…

Gianfra
- 1,119
- 4
- 17
- 33
1
vote
1 answer
Get Video from frames in Xuggler
I am trying to encode a list of images into a video using xuggler. I have got an array of buffered images. I am using the following code.
public void encodeImage(BufferedImage originalImage, long timestamp)
{
// BufferedImage…

Hadi
- 1,212
- 2
- 17
- 31
1
vote
1 answer
Does Xuggler generate RTSP stream
Is it possible to generate RTSP video stream with Xuggler? If so can you give an outline of the procedure?

Akhil K Nambiar
- 3,835
- 13
- 47
- 85