Processing Audio

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • markarichman@gmail.com

    Processing Audio

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

  • Daniel O'Connell [C# MVP]

    #2
    Re: Processing Audio


    <markarichman@g mail.com> wrote in message
    news:1103403784 .721375.262680@ z14g2000cwz.goo glegroups.com.. .[color=blue]
    > How can I load and process an audio (wav) file using C#? I want to
    > implement a pitch detection algorithm.[/color]


    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.o rg 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).


    Comment

    Working...