Sox:在mp3文件的末尾修剪

问题描述 投票:0回答:1

我和sox有点挣扎。我试图简单地切断1.2秒的文件结束。我知道在sox中有一个trim函数,但我不知道如何使用它所以它会在最后切断确切的时间?我知道它大致如下:

sox input output trim <start> <duration>

但是,我能想到的唯一解决方案就是这样(Pseudocode):

sox input output trim <length of whole mp3 file -1.2 seconds> <1.2 seconds>

macos audio mp3 sox
1个回答
0
投票

弄清楚了:

sox input output trim 0 -1.2

© www.soinside.com 2019 - 2024. All rights reserved.