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

Xuggler, forwarding and rewinding video in xuggler 5.4 NOT WORKING

I used the xuggle-xuggler5.4 in my app to add video and audio playing functionality, I have dig into google and found following snippet: long duration = container.getDuration(); long target = new Double(duration *…
Mohammad Hassany
  • 898
  • 1
  • 14
  • 30
3
votes
1 answer

Unable to load Xuggle library: java.lang.UnsatisfiedLinkError

I'm designing this Java web applet to stream video via RTSP from a video server. In order to render this video, the Xuggler 5.4 library (xuggle-xuggler.jar) will be used. Currently, video is rendered properly when I run it on Windows XP and Ubuntu…
Justin
  • 742
  • 5
  • 17
  • 34
3
votes
1 answer

Alternative of xuggler for video encoding which doesnot require installaion?

I am creating a screencast Java Web Start application. Encoding Video using xuggler requires: installing xuggler on the client system - Which is tedious. (OR) Using xuggle-xuggler.jar version 5.2 or above whose size is around 35 MB plus. - this…
devashish jasani
  • 413
  • 1
  • 4
  • 15
2
votes
1 answer

Xuggle combine audio with generated audio

I have an mp3 file, and an image. I need to create a video combining them, in java. I'm trying to do it with xuggle, but there are still no results. Can anybody give me any suggestions ?
user584397
  • 347
  • 2
  • 12
2
votes
2 answers

Saving two streams of one of video and other audio using Xuggler and Red5

I am using a red5 server. I am doing a two way video conference using flex application. My current red5 server is storing both streams as different flv files. now i have done some editing and have saved these edited files as one with video stream…
Muhammad Umar
  • 11,391
  • 21
  • 91
  • 193
2
votes
2 answers

Error while transcoding video from one format to another

I am using xuggler API to transcode Video from one format to another. Following the example, provided by http://wiki.xuggle.com/MediaTool_Introduction & http://www.javacodegeeks.com/2011/02/xuggler-tutorial-transcoding-media.html public void…
MalTec
  • 1,350
  • 2
  • 14
  • 33
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

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

Xuggle on android

Am trying to use the libraries form Xuggle in my android app. I have added the all the jar files to my app. When i use the xuggle functions I do not get any warnings after importing required xuggle packages. But at run time my app crashes with the…
2
votes
3 answers

Unable to understand this method (How does it try to match the frame rate ?)

I came across this snippet while going through the tutorial on how to decode a video : private static long millisecondsUntilTimeToDisplay(IVideoPicture picture) { /** * We could just display the images as quickly as we decode them, but it turns *…
saplingPro
  • 20,769
  • 53
  • 137
  • 195
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
2 answers

Java Appcrash Problem

when I start my Java-Program, I get this error (using Xuggle-library with Webcam): Problem signature: Problem Event Name: APPCRASH Application Name: java.exe Application Version: 6.0.260.3 Application Timestamp: 4dc11607 …
maximal
  • 23
  • 1
  • 3
2
votes
1 answer

Java RTP/HTTP Streaming

i'm decoding and encoding a videofile via Xuggle to FLV-video format and send it via Sockets to my java server (not the entire file, only parts of it every X seconds). On the server-side I get the encoded file as ByteArrayInputStream. Is it possible…
T D
  • 115
  • 3
  • 5
  • 17
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
1 2
3
10 11