How to convert MP3 tp PCM using delphi code?
Posted
by XBasic3000
on Stack Overflow
See other posts from Stack Overflow
or by XBasic3000
Published on 2010-06-08T01:58:31Z
Indexed on
2010/06/08
2:02 UTC
Read the original article
Hit count: 324
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;
© Stack Overflow or respective owner