Split mp3 file to TIME sec each using SoX

我只是一个虾纸丫 提交于 2020-03-18 05:48:13

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!