I have more than 600 MP3 files, I just want to listen a part of each MP3 file. I know some MP3 cutter tools can do this job manually. Repeating the similar job more than 600+ times via MP3 cutter tool, that must be a very very boring and hard thing. So I need to write a program to finish this job automatically.
The specified part in each MP3 file have the almost same start/end part (5~8 seconds), if I can write a program to detect the start point and the end point, my question is nearly to be resolved.
PS: 1) All the MP3 files are English learning podcast. 2) C or JAVA solution is prefered
Thanks
I find the specified part time was already listed in MP3 metadata, so my problem is resolved:
1) Read MP3 metadata, get the start time and end time, thanks to https://stackoverflow.com/a/21746702/3367812
2) cut MP3 file, thanks to https://stackoverflow.com/a/10056024/3367812