Login  Register

Re: Sound finishes with a click.

Posted by TheLittleP on Apr 23, 2014; 11:55am
URL: https://forum.jogamp.org/Sound-finishes-with-a-click-tp4032182p4032223.html

Yes I agree. I have resolved my issues with this.

Currently I am working on an mp3 player. I just get noise...

I downloaded mp3spi, jlayer and tritonus-shared.

here is my test code...

AudioInputStream ais=new MpegAudioFileReader().getAudioInputStream(chooser.getSelectedFile());

DB.print("mp3 format="+ais.getFormat());
DB.print("mp3 size="+ais.available());

int size=ais.available();
    byte[] bytes=new byte[size];
    ais.read(bytes);

Buffer[] b=new Buffer[1];
b[0]=Audio.fetchBuffer();
b[0].configure(ByteBuffer.wrap(bytes),Buffer.FORMAT_STEREO8,44100);
Source s=Audio.fetchSource();
s.queueBuffers(b);
s.play();
DB.print("mp3 OK");


mp3 format=MPEG1L3 44100.0 Hz, unknown bits per sample, stereo, unknown frame size, 38.28125 frames/second,

I have tried Buffer.FORMAT_STEREO8 and Buffer.FORMAT_STEREO16

There is something more to it and I don't know what.

I am wondering if you could help thanks :)