Content originally posted in LPCWare by Pacman on Wed Sep 10 04:26:30 MST 2014
Nope. You're multiplying a bitrate with 8 and won't get another bitrate.
If you have 11kHz in 8-bit mono, then 11 kHz * 8 = 88 kbps.
...or if you have 88kbps in 8-bit mono; 88kbps / 8 = 11kHz.
...or 44.1kHz in 16-bit stereo: 44.1 kHz * 16 * 2 = 1.4Mbps.
Normally you don't use the bitrate when you speak audio. You just use the sample-frequency, the number of channels and the channel size.
I think you can take any audio-file (mp3, wav, aiff or whichever format your system can read) and convert into either wav, aiff or raw sample data in the number of channels and bitwidth that you require.
Try the application Audacity; it's a good and free converter and it has an option to convert to "Other uncompressed files : RAW (header-less) : Signed 8 bit PCM.
Try doing as follows...
[list=1]
[*]Load your audio file into Audacity.
[*]Choose Track : Resample ... (enter or choose 11025)
[*]Choose Track : Stereo Track to Mono
[*]Choose Save As, in the PopUp button, select "Other uncompressed files", click "Options...", choose Header: "Raw (header-less)", Encoding: "Signed 8 bit PCM". Click OK and save the file.
[*] If you're asked for header-information, clear all data and click OK.
[/list]