I'm relatively new here and to the usage of Java's Sound API and audio programming altogether. I have been wondering if it's possible to do the following things with Java's Sound API:
- extract the values of individual frequencies an audio file consists of. (ex: amplitude for frequency range 20Hz-20kHz)
- based on those values, perform manipulations, then write a new modified audio file.
If you're wondering why I'm asking these, I'm planning to create a custom audio compression format with the use of a swarm-based optimization algorithm. So for those who can give a more straightforward answer: would creating an audio compression program be possible using Java's Sound API?
Thanks.