Change WAV bitrate

  • Thread starter Thread starter Carl Gilbert
  • Start date Start date
C

Carl Gilbert

Hi

I am trying to render a wave file in a dotnet application but the component
I am using only supports 16 bit wave files with two channels.
How can I convert the wave file within .net to a different bit rate?

Carl
 
That would require reading the WAV file format and extracting the PCM audio
samples and performing an algorithm to upsample or downsample the audio
data. It is not as simple to write a different bit rate into the WAV, as
the audio will not play correctly.

- Andrew
 
Back
Top