12

I am using the NAudio DLL and I am looking for example code for pitch shifting sound.

Paul R
  • 208,748
  • 37
  • 389
  • 560
mehdiattar
  • 121
  • 1
  • 3
  • 4
    Why are we voting to close this? It's not the best phrased question, but a very common FAQ for audio DSP in .NET – Mark Heath May 01 '11 at 07:10
  • 1
    @MarkHeath, is NAudio capable of changing by Hz? I have an old recording that is a bit of pitch (not a complete semitone), and I want to fix it so I can add music to it. Is this doable with NAudio? Any sample usage? – Shimmy Weitzhandler Jun 10 '17 at 23:13

1 Answers1

8

There is an example of using NAudio for pitch shifting in the open source Skype Voice Changer project. See my article on Coding4Fun for more information on the project. The pitch shifter code itself is found in the SuperPitch class.

Mark Heath
  • 48,273
  • 29
  • 137
  • 194