I had a question earlier: Reading a wav file in Java
First of all, I want to read a wav file from Java and get its bytes for processing into an array.
Secondly, I will remove his silence (this is another topic of the question).
After that, I will split this wav file for 1 second (I have to handle the header problem for these small wav files, this is one of the main problems)
I tried to read a wav file with Java with this API, the answer to my previous question. However, with this API, I have to do something for the header, or the API does it myself, and how can I split this wav file for 1 second with Java. Another API or something else is fine for me too.
source share