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.
我试过这个:
sox -u -r 11.025k -b 8 -c 1 infile.wav outfile.wav
但是当我播放时声音是乱码且无法识别。我怎样才能解决这个问题?
尝试这个:
sox -t wav infile.wav -r 11025 -b 8 -c 1 outfile.wav
你说的方式,参数被应用到infile.wav,而不是outfile.wav。
infile.wav
outfile.wav