Split mp3 file to TIME sec each using SoX

2020-07-16 09:00发布

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

标签: linux mp3 sox
2条回答
贪生不怕死
2楼-- · 2020-07-16 09:27

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.

查看更多
女痞
3楼-- · 2020-07-16 09:38

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

查看更多
登录 后发表回答