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

H264 encoder settings

I'm using xuggler to encode a series of images to an MP4 file. I use the following code to setup the IStreamCoder and specify the H264 codec: // only set if codec is…
Sonoman
  • 3,379
  • 9
  • 45
  • 61
1
vote
2 answers

Use Xuggler to quicky segment file without decoding/encoding

Writing a Java application using the Play framework and need some HTTP-Live streaming. I intent to segment the mp4 files on the fly, on-demand. I tried a c-segmenter for that (from Carson McDonald) and it is very quick. However, I like to integrate…
Luuk D. Jansen
  • 4,402
  • 8
  • 47
  • 90
1
vote
1 answer

Xuggler H264 FPS encoding issue

I'm trying to encode a series of images into an MP4 video with xuggler. However, trying to wrap my head around the timebase/framerate issues is driving me insane! I can't seem to get a decent video encoded. Using the Converter.java example, I have…
Sonoman
  • 3,379
  • 9
  • 45
  • 61
1
vote
2 answers

Xuggle and java library path

I'm writing a screencast application in Java. I decided to use Xuggle to do it and I followed up the installation instructions on the xuggle wiki. I set up the PATH environment with %XUGGLE_HOME%\bin and %XUGGLE_HOME%\lib. Everything seems OK. I…
zeropouet
  • 124
  • 3
  • 11
1
vote
1 answer

How I can use Xuggler with Play! Framework

I was trying to use Xuggler ( http://www.xuggle.com/ ) with play! framework. I'm using Mac OSX and also created the ~/.MacOSX/environment.plist file with xuggler path. I also set these in my ~/.bashrc export XUGGLE_HOME=/usr/local/xuggler export…
Rifat
  • 7,628
  • 4
  • 32
  • 46
1
vote
1 answer

java/xuggle - encode array of images into a movie

how can I encode a array of images into a movie using xuggle and java? I would like this to be at 30 fps. I would be willing to use another framework than xuggle, but i believe xuggle would be easiest. Probably a novice question, but thanks…
Aidan
  • 185
  • 3
  • 10
1
vote
1 answer

forwarding and rewinding audio in xuggler

I have used xuggler to play audio files other than wav,au,aiff. Since xuggler performs audio decoding at low level it is very hard to write a method that both forwards and rewinds the audio being played . ( while decoding xuggler analyzes each data…
Suhail Gupta
  • 22,386
  • 64
  • 200
  • 328
1
vote
2 answers

Only video plays not the sound. Why is that ?

I read this code to play video files using xuggler as a library.When i run this code , the video without sound plays.Why is that ? If not what should i do to play audio with video.?
saplingPro
  • 20,769
  • 53
  • 137
  • 195
1
vote
1 answer

Java - Keyframe extraction from a video

I want to extract keyframes from a video. Now I'm using a loop that compare the samples of one frame with the samples of the preceding frame, but this method isn't very good. Let me explain: I have a surveillance video and I have to select the…
Mark Design
  • 664
  • 1
  • 6
  • 24
1
vote
0 answers

Xuggler failed to encode/convert MPEG4 Video

because of the not much supported Codecs from the Java Media Lib, i try to convert AVI and MPEG4 Files to MP4 with Xuggler and open the new File afterwards. There is no problem to AVI Files but on MPEG4 Files i get following error: Exception in…
1
vote
0 answers

Xuggler screenRecording code affecting sound recording

I am working on an application for screencast with audio. screen recording with sound is working fine but the issue is that suppose I do recording of 5 mins then generated video file is of 5 min but generated audio file is of 4 min 45 sec. So…
Sandeep Kumar
  • 13,799
  • 21
  • 74
  • 110
1
vote
3 answers

Java - xuggle/ffmpeg - mov atom not found

I am trying to read a mov file from local using Xuggle. This gives me the following error: 30-mag-2011 15.56.55 com.xuggle.ferry.NativeLogger log GRAVE: [mov,mp4,m4a,3gp,3g2,mj2 @ 0x102840600] moov atom not found The problem is that until two…
Mark Design
  • 664
  • 1
  • 6
  • 24
1
vote
1 answer

How to capture video and audio from camera/webcamera with Xuggle?

I found out abut Xuggle yesterday and let me first say that it is an amazing thing. I run through all of video and text tutorials. My first problem was to programatically record desktop of computer and I solved this this way. Now I need something…
vale4674
  • 4,161
  • 13
  • 47
  • 72
1
vote
2 answers

Red5 Audio Recording

I want to record audio stream as mp3 file on server. I know flash media server can do this but I can not afford it.Red5 officially does not allow this. I have done research and found that we can record audio in flv then use ffmpeg to convert this to…
user444757
  • 665
  • 1
  • 7
  • 18