Questions tagged [xuggler]

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.

277 questions
4
votes
1 answer

Java HD Video Capture processing and streaming

I have an application which captures live video from an HD camera and streams it to a video streaming server. I currently use Adobe Flash Media Live Encoder(FMLE) to sent the captured video stream to the server. The problem is FMLE has no support…
4
votes
1 answer

Video Reader/Writer program xuggler not working

I have downloaded Xuggler and added the Jar files to the Eclipse library, I wrote some code for java to get a flv file and convert it to mov: public class Main { public static void main(String[] args) { IMediaReader reader =…
Rahul Khosla
  • 349
  • 9
  • 21
4
votes
1 answer

How to get Acoustid (Chromaprint) from Java to identify mp3/m4a/etc

Has anyone managed to use acoustid (http://acoustid.org/chromaprint) in an Java application? Accessing the chromaprint clib should be easy but I can't just pass in the audio file. I requires the raw uncompressed audio data. I've tried using xuggler…
rednoah
  • 1,053
  • 14
  • 41
4
votes
3 answers

BigEndian, LittleEndian Confusion In Xuggler

Previously I posed a question about converting a byte[] to short[] and a new problem I encountered is converting/ not converting the data from byte[] to BigEndian. Here is what is going on: I am using TargetDataLine to read data into a byte[10000].…
An SO User
  • 24,612
  • 35
  • 133
  • 221
4
votes
2 answers

how to merge audio file with new video file?is it possible in android?

i successfully got video from sequence of images using javacv in android.now i have problem that is how to merge audio to that newly created video.is it possible in android or javacv integration? Here is my code, String path…
rams
  • 273
  • 1
  • 5
  • 13
4
votes
2 answers

Xuggler and playing from live stream

We're currently busy with a project in which we are trying to play a video file in a window from a live stream in Java. We've already managed to capture the stream via a Socket object using an InputStreamReader. The next step is using an existing…
michel3vb
  • 71
  • 1
  • 7
4
votes
1 answer

Xuggler audio livestream playback not continuous

I have a job where I have to take continuous screenshots and capture sound from a desktop, then publish them as a live video stream. I use Wowza Media Server 3.0.3 for stream publishing. I also use Xuggler to generate image frames and put them with…
Bandi
  • 41
  • 1
4
votes
1 answer

How to write to an outputStream using xuggler?

So I'm trying to write my encoded buffered image to an output stream but I can't get any data to come through on the stream... Could anyone tell me what I'm doing wrong and why I can't see any output? I would expect that when I call the…
Grammin
  • 11,808
  • 22
  • 80
  • 138
4
votes
5 answers

how to extract audio from video using xuggler?

i am trying to make an audio file (*.mp3 , .wav etc) from a video file (.avi,*.mp4 etc) using xuggler here is my code Code: IMediaReader reader = ToolFactory.makeReader("D:/Frames/my.mp4"); IMediaWriter writer =…
Muhammad Suleman
  • 2,892
  • 2
  • 25
  • 33
4
votes
1 answer

video-steganography in java

I need to create steganographic videos (videos with data hidden in them) for my project. I need to carry this out by extracting all the frames from a video and then hiding data in the selected frames by replacing bits in the LSB of the pixel color…
3
votes
0 answers

Reading Geolocation from Quicktime Movies with Java (Xuggler)?

I need to retrieve geolocation data from QuickTime MOVs recorded on the iPhone/iPad, from a Java application. I am currently investigating the Xuggler media framework; I was hoping I could use Xuggler's IMetaData interface to read out the UserData…
Alterscape
  • 1,526
  • 1
  • 17
  • 34
3
votes
3 answers

Audio converting with Xuggler

I'm trying to convert aac/wav/wma audio files to mp3 with Xuggler in Java. Unfortunately, I have a big loss of quality. My input file size is about 7MB and my output file size is only 1,5MB. The sample rate is set to 44100 Hz, is there other…
3
votes
2 answers

javax.media.NoDataSinkException

I am trying to convert Jpeg images into .mov video file package com.ecomm.pl4mms.test; import java.io.*; import java.util.*; import java.awt.Dimension; import javax.media.*; import javax.media.control.*; import javax.media.protocol.*; import…
Divya
  • 87
  • 1
  • 10
3
votes
1 answer

xuggle jar file not working as a dependent jar

I read about xuggle library I am trying to let xuggle library work as a single jar file without any external use of any dll files or environmental variables I read all errors that was in installing xuggler and tried all and the same exception is…
3
votes
1 answer

xuggler icontainer read from inputstream

I am using xuggler to transcode videos into different formats. If I open my IContainer directly from a file, it works perfectly, however, this time I want to open IContainer use an InputStream. Strange thing is I tried to open a mp4 format video via…
user289390
  • 59
  • 1
  • 6
1 2
3
18 19