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

Xuggler generates error message

I was working on creating my first Xuggler media application. I was coding by watching their video on how to create the first media application. Code package demo; import com.xuggle.xuggler.IContainer; public class GetContainerInfo { …
An SO User
  • 24,612
  • 35
  • 133
  • 221
0
votes
1 answer

How can I publish my rtmp url to red5?

I am trying to use xuggle and red5 to generate streaming video in a browser. As a first step I'm just trying to run a video through xuggle and have it show up on my red5 server. The problem is I don't know how to configure red5 to hook up to my…
Grammin
  • 11,808
  • 22
  • 80
  • 138
0
votes
1 answer

youtube to mp3 conversion on server

I'm wondering how can this site process file so quickly youtube-mp3.org. Could i use xuggler and convert to mp3 without downloading flv? Could i use youtube-mp3.org in my program in order to download mp3 file from some youtube link. I'm trying to…
user1610362
  • 637
  • 2
  • 9
  • 26
0
votes
1 answer

java.lang.OutOfMemoryError: Java heap space using -Xmx1024m

I have an issue when i try to decode and play a video file with Xuggler. I tried with avi and mkv, from big files (2gb) to small files (20mb) and they all give me the same result : it displays a random image from the video in the window and give me…
IonOne
  • 385
  • 4
  • 15
0
votes
1 answer

change bitrate of mp3

I am using xugglu in java in order to switch the bitrate of the input MP3 file, storing it in a output file. I took one example I found on the net the loads the file to a reader and adds a writer as a listener. Does anyone know how can I then modify…
Potney Switters
  • 2,902
  • 4
  • 33
  • 51
0
votes
1 answer

Xuggler - add audio?

I creating an video file by encoding BufferedImages. How I can add Audio to this video from mp3 file? IMediaWriter movie = ToolFactory.makeWriter("somefile.mp4"); movie.addVideoStream(0, 0, ICodec.ID.CODEC_ID_H264, 720,…
goodm
  • 7,275
  • 6
  • 31
  • 55
0
votes
1 answer

How to extract a sub portion of a large video file

I want to extract a small portion of video from a large video file on the basis of a given start and end time. My internet search shows that many suggest using Xuggle to do this, but I am unfamiliar with this library, its use, or how one can use it…
Ahsan
  • 11
  • 1
  • 1
  • 9
0
votes
2 answers

Trying to encode using H264 for HTTP Live Streaming

I am trying to encode media files to use for HTTP Live Streaming, but don't have much luck so far. When I use the ICodec.ID.CODEC_ID_MPEG2TS or ICodec.ID.CODEC_ID_MPEG4 codes the stream encode but I get an error using Apple's Validation…
-3
votes
2 answers

Video thumbnail xuggle

I wanted to get thumbnails from videos from a point around half way through and I accomplished this by using: http://build.xuggle.com/view/Stable/job/xuggler_jdk5_stable/ws/workingcopy/src/com/xuggle/mediatool/demos/DecodeAndCaptureFrames.java But…
serdar
  • 974
  • 2
  • 16
  • 24
1 2 3
10
11