问题
I need to split mp3 file into slices TIME sec each. I've tried mp3splt
, but it doesn't work for me if output is less than 1 minute.
Is it possible do do with:
sox file_in.mp3 file_out.mp3 trim START LENGTH
When I don't know mp3 file LENGTH
回答1:
You can run SoX like this:
sox file_in.mp3 file_out.mp3 trim 0 15 : newfile : restart
It will create a series of files with a 15-second chunk of the audio each. (Obviously, you may specify a value other than 15.) There is no need to know the total length.
Note that SoX, unlike mp3splt, will decode and reencode the audio (see generation loss). You should make sure to use at least SoX 14.4.0 because previous versions had a bug where audio got lost between chunks.
回答2:
There are two use case trim in sox:
sox file_in.mp3 file_out.mp3 trim START LENGTH
and
sox file_in.mp3 file_out.mp3 trim START =END
In last example you need to know the END position instead of LENGTH
来源:https://stackoverflow.com/questions/33597969/split-mp3-file-to-time-sec-each-using-sox