WAV compression help - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T00:45:30Zhttp://stackoverflow.com/feeds/question/469628http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/469628/wav-compression-help2WAV compression helpanonymous_2009-01-22T15:40:27Z2009-01-22T22:09:58Z
<p>How do you programmatically compress a WAV file to another format (PCM, 11,025 KHz sampling rate, etc.)?</p>
http://stackoverflow.com/questions/469628/wav-compression-help/469663#4696630Answer by chills42 for WAV compression helpchills422009-01-22T15:48:22Z2009-01-22T15:56:53Z<p>I'd look into audacity... I'm pretty sure they don't have a command line utility that can do it, but they may have a library...</p>
<p>Update:</p>
<p>It looks like they use <a href="http://www.mega-nerd.com/libsndfile/" rel="nofollow">libsndfile</a>, which is released under the LGPL. I for one, would probably just try using that.</p>
http://stackoverflow.com/questions/469628/wav-compression-help/469835#4698351Answer by Brian Carlton for WAV compression helpBrian Carlton2009-01-22T16:26:53Z2009-01-22T16:44:05Z<p>Use <a href="http://sox.sourceforge.net/" rel="nofollow">sox</a> (Sound eXchange : universal sound sample translator) in Linux:
SoX is a command line program that can convert most popular audio files to most other popular audio file formats. It can optionally
change the audio sample data type and apply one or more sound effects to the file during this translation.</p>
http://stackoverflow.com/questions/469628/wav-compression-help/469840#4698400Answer by Stu Mackellar for WAV compression helpStu Mackellar2009-01-22T16:27:31Z2009-01-22T16:27:31Z<p>If you mean how do you compress the PCM data to a different audio format then there are a variety of libraries you can use to do this, depending on the platform(s) that you want to support. If you just want to change the sample rate of the PCM data then you need a sample rate conversion algorithm instead, which is a completely different problem. Can you be more specific in your requirements?</p>
http://stackoverflow.com/questions/469628/wav-compression-help/470255#4702551Answer by Nik Reiman for WAV compression helpNik Reiman2009-01-22T18:13:40Z2009-01-22T18:13:40Z<p>You're asking about <em>resampling</em>, and more specifically <strong>downsampling</strong>, not compression. While both processes are lossy (meaning that you will suffer loss of information), downsampling works on raw samples instead of in the frequency domain.</p>
<p>If you are interested in doing compression, then you should look into lame or OGG vorbis libraries; you are no doubt familiar with MP3 and OGG technology, though I have a feeling from your question that you are interested in getting back a PCM file with a lower sampling rate.</p>
<p>In that case, you need a resampling library, of which there are a few possibilites. The most widely known is <a href="http://www.mega-nerd.com/SRC/" rel="nofollow">libsamplerate</a>, which I honestly would not recommend due to quality issues not only within the generated audio files, but also of the stability of the code used in the library itself. The other non-commercial possibility is <a href="http://sox.sourceforge.net/" rel="nofollow">sox</a>, as a few others have mentioned. Depending on the nature of your program, you can either exec sox as a separate process, or you can call it from your own code by using it as a library. I personally have not tried this approach, but I'm working on a product now where we use sox (for upsampling, actually), and we're quite happy with the results.</p>
<p>The other option is to write your own sample rate conversion library, which can be a significant undertaking, <strong>but</strong>, if you only are interested in converting with an integer factor (ie, from 44.1kHz to 22kHz, or from 44.1kHz to 11kHz), then it is actually very easy, since you only need to strip out every Nth sample.</p>
http://stackoverflow.com/questions/469628/wav-compression-help/470424#4704240Answer by anonymous_ for WAV compression helpanonymous_2009-01-22T19:09:18Z2009-01-22T19:09:18Z<p>To Stu Mackellar: Yes.</p>
http://stackoverflow.com/questions/469628/wav-compression-help/470599#4705990Answer by anonymous_ for WAV compression helpanonymous_2009-01-22T20:03:51Z2009-01-22T20:03:51Z<p>Thanks for the reply sqook..
I have another question: I'm trying sox (.exe) right now. Now my requirement is to convert files into these properties.. </p>
<p>ID: RIFF Format: WAVE Sub ID1: fmt Size 1: 16 Audio Format: 1 Number of Channels: 1 Sample Rate:11025 Byte Rate: 11025 Block Align: 1 Bits Per Sample: 8 Sub ID2: data</p>
<p>sox has converted some files successfully into the above properties (i used rate 11.025k to do that) but others are not. Are there any way I could get the above results all the time?</p>
<p>Sorry I'm just newbie at this.. :)</p>
http://stackoverflow.com/questions/469628/wav-compression-help/471036#4710360Answer by Mark Heath for WAV compression helpMark Heath2009-01-22T22:09:58Z2009-01-22T22:09:58Z<p>In Windows, you can make use of the Audio Compression Manager to convert between files (the acm... functions). You will also need a working knowledge of the WAVEFORMAT structure, and WAV file formats. Unfortunately, to write all this yourself will take some time, which is why it may be a good idea to investigate some of the open source options suggested by others.</p>
<p>I have written a my own open source .NET audio library called <a href="http://www.codeplex.com/naudio" rel="nofollow">NAudio</a> that can convert WAV files from one format to another, making use of the ACM codecs that are installed on your machine. I know you have tagged this question with C++, but if .NET is acceptable then this may save you some time. Have a look at the NAudioDemo project for an example of converting files.</p>