Does anyone know a way to get the mean amplitude of a .wav file using C# (even if it means calling an outside command line program and parsing the output)? Thanks!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Here is a snip that reads in a stereo wav and puts the data in two arrays. It's untested because I had to remove some code (converting to mono and calculate a moving average)
|
|||||||||
|
|
The NAudio library for .NET sounds like your best bet. It allows access to the waveform of an audio file, which can loop over to calculate the value of the mean ampltiude. |
|||
|
|
|
Normally the root-mean-squared method is used to calculate the "mean" amplitude of sin(x)-like signals. |
|||