playing audio from an AVI file...
Posted by TheLittleP on Mar 14, 2014; 12:48am
URL: https://forum.jogamp.org/playing-audio-from-an-AVI-file-tp4031894.html
Hi,
I am trying to play the audio track of an avi file using joal.
I am hoping what I am doing wrong will appear simple to someone and I will very much appreciate some help thanks. I will explain where I am so far...
the avi is encoded LINEAR,8 bits, unsigned
I create a joal buffer using...
configure(ByteBuffer data, int format, int freq)
data is ByteBuffer with the chunk buffer written directly.
format=MONO8
freq=11024;
AudioSystem3D.generateSource(MyJoalBuffer);
I am guessing that the above call is expecting the buffer to be the contents of a wav file and that is why I am hearing nonsense. However, least I am hearing something :)
I am guessing there is another way to have the AudioSystem3D to accept a raw buffer?
Not sure if I need to use a codec as the format is fairly basic.
please help thanks :)