Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编写一个脚本,从 100 多个 mp3 文件中删除前 11 秒。
我可以使用“拆分”命令来做到这一点吗?或者是否有任何我可以使用的 Mac CLI 程序?
试试 ffmpeg。
ffmpeg -i infile.mp3 -ss 11 outfile.mp3
如果您的 ffmpeg 不支持 mp3 编码,请尝试以下操作:
ffmpeg -i infile.mp3 -ss 11 /tmp/outfile.wav lame /tmp/outfile.wav outfile.mp3
不过,您将需要安装这些软件包:)