Hope that someone will help me with problem. I've written network client that reseives streaming audio encoded in AMR515. Client uses own protocol, over UDP, and each datagramm contains 2 chunks of 20 ms audio data. Client receiving this audio data to buffer and writes it to PipedOutputStream, when buffer sufficiently filled with (actually first I write to PipedOutputStream AMR header). StreamWorker (see below) get access to PipedInputStream, creates IContainer and tries to open, but got IO error. When I just writes this bytes to file (with header) and after trying play it with Xuggler, all works fine. In listing I showing only not working part, so some of it skipped (there is lot of code).
import com.xuggle.xuggler.IAudioSamples;
import com.xuggle.xuggler.ICodec;
import com.xuggle.xuggler.IContainer;
import com.xuggle.xuggler.IContainerFormat;
import com.xuggle.xuggler.IPacket;
import com.xuggle.xuggler.IStreamCoder;
import java.io.PipedInputStream;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.SourceDataLine;
import net.DataConnection; // it's my network worker
public class StreamWorker
{
public StreamWorker() {
}
public void setDataConnection(DataConnection dc) {
this.dataConnection = dc;
this.inputStream = dataConnection.getBridgeStream();
}
public void convertAndPlay() {
IContainer container = IContainer.make();
IContainerFormat containerFormat = IContainerFormat.make();
int sb = container.setInputBufferLength(128);
if(sb < 0) System.out.println("Can't set buffer");
if(container.open(inputStream, containerFormat, true, false) < 0)
throw new IllegalArgumentException("Can't open stream!");
System.out.println("Stream opened!");
/*
* I've never reach there, so other part is skipped
*
* */
}
// a lot of skipped code that never runs
private DataConnection dataConnection;
private PipedInputStream inputStream;
private static SourceDataLine mLine;
static byte[] header = { // AMR file header
0x23, 0x21, 0x41, 0x4D, 0x52, 0x0A
};
}