I had a question previously: Reading wav file in Java
Firstly, I want to read a wav file with Java and get its bytes to process into an array.
Secondly, I will remove the silences of it(this is another question's topic).
After that I will divide that wav file into 1 second pieces(I should handle header problem for that small wav files, this is one of the major problems)
I tried to read wav file with Java with that API, the answer of my previous question. However with that API should I do anything for header or API does it itself and how can I divide that wav file into 1 second pieces with Java. Another API or anything else is OK for me too.