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

Improving the visual quality of Theora when using Xuggler

I'm looking for fellow users, who are using Xuggler to produce video encoded with Theora. I've tried a lot of different options to get "good" quality using presets to no avail. I would love to get quality anywhere close to what I can produce with…
Paul Gregoire
  • 9,715
  • 11
  • 67
  • 131
2
votes
2 answers

Audio playing too fast

If any of my fellow Xuggler users can tell me what I'm doing wrong, that would be awesome! I am doing the following: Reading from ogv (ogg video) Queueing the audio and video Writing back to ogv sounds simple right? The problem I am experiencing…
Paul Gregoire
  • 9,715
  • 11
  • 67
  • 131
2
votes
1 answer

How do I mixdown multiple audio channels in java/xuggler?

like mixing 6 channel surround down to stereo? xuggler throws: ERROR com.xuggle.xuggler - Error: inputChannels > 2; unsupported
kerrygould
  • 21
  • 2
2
votes
1 answer

Read and display video from mjpeg stream in java

I use the following code to broadcast live mjpeg stream from my webcam. import com.github.sarxos.webcam.Webcam; import com.github.sarxos.webcam.WebcamStreamer; public class MjpegStreamingExample { public static void main(String[] args) throws…
user1584887
  • 277
  • 1
  • 11
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

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

Adding filtering support to Xuggler

I need to have ability to filter video in Java. Xuggle (FFMpeg wrapper for Java) can decode and encode video, but unfortunately can not filter it. I found this patches to Xuggle:…
lisyara
  • 121
  • 1
  • 6
2
votes
1 answer

How can i deinterlace image in Java?

I am using Xuggle to play interlaced video from ip-camera and really need in deinterlace option, which exists in FFMpeg (Xuggle is a java wrapper over FFMpeg library). Unfortunately, deinterlace option ("-vf yadif", if i'm not mistake) is not…
lisyara
  • 121
  • 1
  • 6
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

Is Java fast enough to do live screensharing?

For the past few months, a developer and I have been working on a screensharing applet that streams to a media server like Wowza or Red5, but no matter what we do, we have about 5 seconds of latency, which is too long for a live application where…
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

xuggle concurrent transcoding

I'm xuggle primer and I'd like to transcode video to various formats/qualities. As a newbie I'd like to use the Xuggle MediaTool. As I need to do it efficiently, I want to process each target format in a separate thread. What's the correct…
mrzasa
  • 22,895
  • 11
  • 56
  • 94