I'm very new to sound analysis in fact doing it for the first time all I need to do is to analyse an mp3 file or any other format and detect as pitch varies. simply I want to trim audio file where high notes occur.
I've tried NAudio and few articles but of no avail so if someone guides me in right direction for some tutorial and what API to use.
byte
array. It consists of RIFF header with some necessary parameters and the wave sequence itself. More complicated waveforms (multichannel, high bit rate) are represented in some other way (int
instead ofbyte
array, interference and so on).If you are very new to audio programming, there is a great beginner tutorial: generating constant waveforms with C#.