Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi i want convert pcm 44100 hz to wav ccitt a-law 8 bit mono 7 kb/s in my project in c# . plz help me what i must do ? thank you .
Posted
Comments
Bernhard Hiller 3-Feb-14 5:29am    
Not necessarily a solution, but generally a good hint: look for applications which can do that conversion via command line, and call it with the appropriate parameters. That's normally the easiest way to do conversions.

Try How convert wav pcm 44100 to a-law 8bit mono in c#[^]

C#
static void PcmToAlaw(string fileName)
{
    WaveReader wr = new WaveReader(File.OpenRead(fileName));
    IntPtr pcmFormat = wr.ReadFormat();
    FormatDetails[] fdArr = AudioCompressionManager.GetCompatibleFormatList(pcmFormat, true);
    foreach (FormatDetails fd in fdArr)
        {
        WaveFormat wf = AudioCompressionManager.GetWaveFormat(fd.FormatHandle);
        if (wf.wFormatTag == AudioCompressionManager.ALawFormatTag && wf.nChannels == 1)
        {
            IntPtr alawFormat = fd.FormatHandle;
            byte[] alawData = AudioCompressionManager.ToFormat(wr, alawFormat);
            WaveWriter ww = new WaveWriter(File.Create(fileName + ".wav"),
                AudioCompressionManager.FormatBytes(alawFormat));
            ww.WriteData(alawData);
            ww.Close();
            break;
        }
    }
}
 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900