kiruthika
kiruthika

Reputation: 2189

What is the difference between the .wav and .gsm file format

I am learning asterisk.In this I have worked with voicemail application.
When I was trying to play the voicemail,I have seen the files in the following format.

   .wav
   .WAV
   .gsm
What is the difference between the above file formats.

Upvotes: 0

Views: 10183

Answers (1)

Michał Niklas
Michał Niklas

Reputation: 54342

There is info on Asterisk wiki:

gsm: raw gsm encoding, good for VoIP 
wav: MS wav format, 16 bit linear 
WAV: MS wav format, gsm encoded (wav49)

You can read about those file formats on Wikipedia: Audio_file_format Remember that .wav files can be created with various codecs.

On Asterisk wiki there is article about sound files with information about converting .wav to .gsm and tools that can be used with those files.

Upvotes: 5

Related Questions