Processing Audio

  • Thread starter Thread starter markarichman
  • Start date Start date
M

markarichman

How can I load and process an audio (wav) file using C#? I want to
implement a pitch detection algorithm.
 
How can I load and process an audio (wav) file using C#? I want to
implement a pitch detection algorithm.


There is no built in functionality to do this. The wav format is pretty well
documented and pretty easy to parse using C#. Just search for the
format(wotsit.org will have it, but I don't know how old the spec it has
will be, but I had good luck with it the last time I tried).
 
Back
Top