I am looking for a java library that will allow me to "trim" an audio file so that I can pull out and save X amount of seconds of an audio file. Ideally, I am looking for something that would be like a substr for an audio file. If I want from 123 seconds in to 153 seconds in I would be able to do:
coollib.load('bigfile.mp3');
coollib.trimAudioSeconds(123,30);
coollib.export('newfile.mp3');
I have seen this post:
http://stackoverflow.com/questions/86083/any-good-recommendations-for-mp3sound-libraries-for-java
But it didn't have anything about my substr quest. I am hoping someone has needed this functionality before so they will know exactly what direction to point me.
Thanks!