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
Setting mp3 bitrate with xuggler
I need to convert audio files to mp3 format with a 192 kbps bitrate using xuggler.
The method addAudioStream, which implements the IWriter interface, is writing the audio files at 64 kbps.
How can I set the bit rate?

user1019710
- 321
- 5
- 14
2
votes
4 answers
making an installer and installing the libraries if not already installed
How can i make up am installer for my java application (jar file) . The same as that of windows installer which proceeds by clicking next and installs the application. What i want with my java app is, the open source library xuggler to get installed…

saplingPro
- 20,769
- 53
- 137
- 195
2
votes
1 answer
Using Xuggler for MXF to FLV
I am trying to transcode an mxf file to flv type using Xuggler.
But I am getting this exception -
2011-09-23 11:48:06,328 [main] WARN com.xuggle.xuggler - Got error: picture is not of the same PixelType as this Coder expected…

nasaa
- 2,701
- 8
- 47
- 76
2
votes
4 answers
java.lang.UnsatisfiedLinkError: no xuggle-xuggler in java.library.path
I'm using Ubuntu 11.04 and Eclipse. I installed Xuggler succesfully, I've checked the environment variables and everything related with linux in their FAQ:…

Rauter
- 521
- 2
- 5
- 16
2
votes
1 answer
xuggler: no video in encoded 3gp file
i am trying to encode videos into 3gp format using xuggler, i somehow got it to work, work as in the program stopped throwing errors and exceptions, but the new file that is created does not have any video. Now there is no error or exception for me…

Khizar
- 2,288
- 5
- 32
- 53
2
votes
0 answers
xuggler: no error but , file still not converted to 3gp
i am using xuggler to convert file to 3gp format. Now afetr a lot of googling i have come to a point where i get no error on the console but the converted file is just 65Kbs as opposed to the 3Mb source file and if i try to play it , it says the…

Khizar
- 2,288
- 5
- 32
- 53
2
votes
1 answer
Is there a higher level API for Xuggler?
After downloading and using Xuggler, my initial impressions are very good; it supports a whole host of codecs, it was relatively hassle free to get going and the getting started tutorial videos explained all the necessary concepts very…

Michael Berry
- 70,193
- 21
- 157
- 216
2
votes
0 answers
Xuggler recording in AVI format
Hi I am trying to use Xuggler for screen recording video in AVI format.but I am getting the following exception while doing the same.couldn't not open the stream.I changed the width and height as well but no use.
Exception in thread "main"…

java7760
- 21
- 2
2
votes
3 answers
xuggler maven dependency pom.xml file error
when i try to use xuggler maven dependencies in my java maven project getting error "Missing artifact xuggle:xuggle-xuggler:jar:5.2 "
mentioned the pom.xml file please look at once

arjun
- 107
- 1
- 1
- 12
2
votes
0 answers
Xuggler can't open IContainer of icecast server [Webm live video stream]
I'm trying to stream a live webm stream.
I tested some server and Icecast is my pic.
With ffmpeg capturing from an IP camera and publishing in icecast server I'm able to see video in html5
using this command:
ffmpeg.exe -rtsp_transport tcp -i…

Roy Bean
- 75
- 2
- 8
2
votes
1 answer
Displaying RTSP-Stream using Xuggler: org.ffmpeg - [h264 @ 15AC7660] error while decoding MB 34 60, bytestream (td)
I'm new to displaying RTSP-Streams and Xuggler, so I really don't know what to do.
I'm trying to display the Main-Stream of my IP-Camera in a Java-Swing Window and get this:
I also get these errors:
13:21:45.941 [main] ERROR org.ffmpeg - [h264 @…

Wenonah
- 186
- 2
- 8
2
votes
0 answers
Xuggler not reading file from ByteArrayInputStream if filesize is greater that 7 MB
I am new to Xuggler. I want to write a program which reads a video file from ByteArrayInputStream.
This is the code:
public static String path="/home/gurinderbeer/Downloads/IMG_1579.MOV";
public static void main(String[] args) throws…

Gurinderbeer Singh
- 382
- 2
- 15
2
votes
4 answers
how to get duration length of the Video using xuggler
this code reads the time duration in long, but when it converts into the date with time format 'hh:mm:ss' it gives different value and the video length is
00:08:07. what is wrong in this code
String filename = "C:\\Documents\\Airtel…

Sandip Bhoi
- 440
- 3
- 9
2
votes
0 answers
Recognizing the coded type of mp4
I am working on a Java based media management platform where users can upload media files and preview them. Preview generation is done using xuggler and based on the following logic:
if (can be played in a browser) {
directly upload
…

Maddy
- 2,114
- 7
- 30
- 50
2
votes
0 answers
How to stream video(only) using xuggler
I'm trying to multicast a video using xuggler. So far I'm able to read the video frames in BufferImage object. But I don't understand how to create a mpeg-2 ts stream and send to network. My client program doesn't support rtsp or rtmp so I need to…

shantanu
- 2,408
- 2
- 26
- 56