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.
我知道可以从 AIFF 和 WAV 转换为 MP3,但在我的项目中,我需要从 AIFF 和 WAV 输入中获得所有三种格式(AIFF、WAV 和 MP3)。是否可以?
<?php exec("ffmpeg -i file.wav -f aiff -ab 128000 -ar 44100 file.aif"); ?>
不优雅,但您可以使用底层系统工具通过shell_exec()
shell_exec()