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.
我正在尝试更改给定音频文件的比特率,以下代码生成1411 kbps的音频
sox -t wav input.wav -C 320 output.wav speed 0.86 reverb 52 50 100 100 0 0;
谁能指导我如何将音频比特率更改为 320kbps
事实证明,仅当输出音频 mp3 不是 wav 时才支持更改比特率,因此命令应为:
sox -t wav input.wav -C 320 output.mp3 speed 0.86 reverb 52 50 100 100 0 0