Login  Register

Re: playing audio from an AVI file...

Posted by TheLittleP on Mar 15, 2014; 7:35pm
URL: https://forum.jogamp.org/playing-audio-from-an-AVI-file-tp4031894p4031922.html

Here is the dropbox link to my test AVI which I have been attempting to play the audio on joal.

The wav file aa.wav I have successfully played using AudioSystem3D

https://www.dropbox.com/s/yexz08u6l9hwdh0/PETE.avi
https://www.dropbox.com/s/bz9g8vj3gj9aay0/aa.wav

Playing the audio track successfully using java sound says the format is..

AudioFormat audioFormat=new AudioFormat(Encoding.PCM_UNSIGNED,11024.0f,8,1,1,11024.0f,false);

The wav file aa.wav I have successfully played using AudioSystem3D

it reports its format is...
ff=WAVE (.wav) file, byte length: 846748, data format: PCM_SIGNED 44100.0 Hz, 16 bit, stereo, 4 bytes/frame, little-endian, frame length: 211676

I have tried using javax.sound.AudioSystem to convert the AVI track to the same format as aa.wav, but mono instead of stereo,  but it still wont play.

I will appreciate your insight thanks :)