将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的主要内容,如果未能解决你的问题,请参考以下文章

sh 将.ogg批量转换为.mp3,保留ID标签元数据

将 mp3 转换为 ogg 然后 zip 的简单方法? (Python 3)[关闭]

目标 c - 将 mpmediaitem 转换为 ogg vorbis

c++ 音频转换 ( mp3 -> ogg ) 问题

如何将 mp3 等音频文件转换为 mo3 文件? [关闭]

请问MP3 OGG WMA WMV WAV 和AAC格式之间有啥区别啊