How to convert MP3 tp PCM using delphi code?
- by XBasic3000
I have TBass from http://www.un4seen.com/bass.html. I load mp3 and triying to change the format to PCM but it give me same result of mp3?
acmForm.wFormatTag :=1;
acmForm.nChannels :=1;
acmForm.nSamplesPerSec :=8000;
acmForm.nAvgBytesPerSec:=16000;
acmForm.nBlockAlign := 2;
acmForm.wBitsPerSample := 16;
acmForm.cbSize := 0;