将MP3转换为OGG

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将MP3转换为OGG相关的知识,希望对你有一定的参考价值。

This snippets converts a file called 'test.mp3' in the same folder, to a file called 'test.ogg' and saves it in the same folder as well
  1. <?php
  2. $ffmpeg = exec('which ffmpeg');
  3. $ffmpegcmd = $ffmpeg." -i test.mp3 -acodec libvorbis test.ogg";
  4. echo $ffmpegcmd;
  5. exec($ffmpegcmd);
  6. ?>

以上是关于将MP3转换为OGG的主要内容,如果未能解决你的问题,请参考以下文章