Link to home
Start Free TrialLog in
Avatar of bcrotaz
bcrotaz

asked on

Audio compression

I need to compress a 10kHz sampled wav file by 10:1 (or higher if poss)
Any ideas?
Comments only please unless you have some example code.
Sorry about the points - I've given away too many recently.....
Avatar of lowlevel
lowlevel

compress it into mp3, get yourself mp3-code to use the mp3-data?
There is NO way (with todays tech) to compress a wav-file by
10:1 and keep ALL sound information unless the sound is a perfect
sinus-wave or some other periodic signal, since most sound
is too complex and has a tendency to act almost like noise when
compressed.
There are compromises though, and these are for instance
MPEG audio layer 2 & 3 (like lowlevel mentions). But the code
is quite complicated.

The easy way is to lower the bandwidth of the signal by filtering
it with a lowpass filter or resample the sound to a lower
samplefreq and saving it as a wav with subformat;
ADPCM or GSM 6.10. These subformats work in Windows and you
can play them with the TMediaPlayer. To save to these formats; use GoldWave or some other sound editor.
Example:
  I used a "Beavis & Butthead" sample in 8kHz with good quality.
  Original size: 45,022 bytes
  ADPCM        : 16,856  -"-
  GSM          :  6,772! -"-
  Both new samples turned out to have better quality than
  expected.

/// John

Avatar of bcrotaz

ASKER

GSM?
Yes, GSM!
The GSM cellular phone standard contains an audio compression
specification for speech, based on a Regular Pulse Excited -
Linear Predictive Coder (RPE-LPC) with a Long Term Predictor loop.
Basically, information from previous samples, which does
not change very quickly, is used to predict the current sample.
The coefficients of the linear combination of the previous
samples, plus an encoded form of the residual, the difference
between the predicted and actual sample, represent the signal.

/// John

Avatar of bcrotaz

ASKER

Sorry to reject the answer, it's vaguely helpful, but I would like some more input on this one.

If it helps anyone, I can record at full bandwidth (5kHz audio, 10kHz sampling), then I want to take a 1 hour long file and compress it afterwards, in the background.
Avatar of bcrotaz

ASKER

Aha - got some more points!
Avatar of bcrotaz

ASKER

Although it wasn't mentioned above (I thought it did it automatically...) - this is now worth 150....
What quality are we talking about here?
  Is lowering of bandwidth an option?
  Is it speech or music or birdsong or ...
What compression speeds are we talking about?
  MP3 takes "forever" to compress.
Can you not use external applications for
compression & playing?

Have you got any preferences whatsoever?
  (wav output format, QUALITY, etc...)

/// John

Avatar of bcrotaz

ASKER

OK - it's for logging FM radio station output.  I need stereo and mono options.  I'm recording real time all the time, and saving a new file every hour.  The aim is to get 24 hours onto a CD, with 5 mono tracks ( poss 2xstereo + mono ).  I must be able to get back to the original sample rate on playback to ensure transmitted time-of-day is correct, and I can switch between the files with no break in audio on playback.
It's my own playback software, so the recorded file can be in any format at all.  It just must be compressed as small as possible.  Quality wise, not much worse than 8-bit 8k sampling sounds.
I can do the original recording at any quality.   The compression is a background task once the one hour file is complete.

Does that help?

If someone can tell me where to go for more info and codeable methods of doing this, or has a component to do a form of compression, please suggest it!
ASKER CERTIFIED SOLUTION
Avatar of erajoj
erajoj
Flag of Sweden image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bcrotaz

ASKER

Thanks