I want to write a program that will read sound files of different instruments playing the same note, and show the different signature frequencies.
The library I am using to do so is JTransforms, since it seemed to be the one that was recommended the most to perform FFTs in java. I have not found any clear explanations on how to use this library, but from what I can gather, I need to pass in an array of real and complex numbers into the methods provided by the library. How do I get these numbers from my audio clips? I have very basic knowledge of sound processing, since this is only my term project for my first computer science class.