Xuggler encoding and muxing
I'm trying to use Xuggler (which I believe uses ffmpeg under the hood) to do the following: Accept a raw MPJPEG video bitstream (from a small TTL serial camera) and encode/transcode it to h.264; and Accept a raw audio bitsream (from a microphone) and encode it to AAC; then Mux the two (audio and video) bitsreams together into a MPEG-TS container I've watched/read some of their excellent tutorials, and so far here's what I've got: // I'll worry about implementing this functionality later, but // involves querying native device drivers. byte[] nextMjpeg = getNextMjpegFromSerialPort(); // I'll