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.
我尝试在网站上上传 3gpp 音频文件吗?有没有一种简单的方法可以做到这一点?有什么方法可以将该 3gpp 文件转换为 mp3 文件?请帮我
好吧,这取决于您的服务器。如果你有一台 linux 机器,你可以使用 ffmpeg 进行转换:
ffmpeg -i input.3gp -acodec mp3 -ar 22050 -f wav output.mp3
只需上传文件并触发此命令。否则,您的服务器应用程序本身将不得不处理这个问题。