将各种格式的音频文件转换为mp3和ogg


Convert audio files from various formats to mp3 and ogg

我正在设置一个播客。对于跨浏览器支持,我目前需要上传一个 mp3 文件和一个 ogg 文件。我想将该过程简化为上传许多音频文件之一,该文件在服务器上转换为一个mp3和一个ogg,然后将其放入文件夹中。这可能吗?

谢谢!

为了你的目的,你需要使用ffmpeg进行转换,最终使用ffmpeg-php。

喜欢:

<?php
system ('ffmpeg -i /tmp/a.wav -ar 22050 /tmp/a.mp2', $retval); // took from the ffmpeg documentation. it's just an example
// add " > /dev/null &" if you want to execute in background
?>