Reputation: 11
I have a .pcm file with a sound that I would like to add different effects to. What I am looking for is a simple way (prefeably a library) that can help me with these effects.
My top priority is to change the pitch of the audio.
I would like a function that takes a byte array (or float), and changes the pitch of the audio in that array.
Upvotes: 1
Views: 3279
Reputation: 8228
Java has an API for dealing with WAV and MIDI files, it's included in the JDK by default.
This is the documentation for the java sound API.
Upvotes: 2