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.
我的目标是转换.mp3为.ogg,我用谷歌搜索了它,我意识到ffmpeg适合 php 中的这种过程。那么问题是如何运行 ffmpeg :
.mp3
.ogg
我已经从这里下载了文件。问题是如何使用它。
这个图书馆真的很旧(10 年了!),我不会推荐它。
您可以调用 process viaexec()来转换给定的文件 - 例如:
exec()
exec("ffmpeg -i $inputPath $outputPath")
当然,您需要ffmpeg在服务器上安装软件包。这不是安全的解决方案,您不应该为所有人发布此内容。
ffmpeg