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.
我想知道是否有任何方法可以将 caf 文件转换为 mp3 文件,使用任何 api 或任何其他方法用于我基于 php 构建的 Web 应用程序。我不知道这在 php 中是否可行。
我知道我可以pacpl input.caf -to mp3在我的服务器上使用它来使其工作,但我有共享主机,我想知道是否有办法做到这一点。
pacpl input.caf -to mp3
如果pacpl input.caf -to mp3在 bash 中工作,为什么不像这样从 PHP 调用它:
shell_exec("pacpl input.caf -to mp3");
sudo根据主机服务器配置,您可能需要也可能不需要重新配置权限或在其中使用。
sudo