将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
<?php $ffmpegcmd = $ffmpeg." -i test.mp3 -acodec libvorbis test.ogg"; echo $ffmpegcmd; ?>
以上是关于将MP3转换为OGG的主要内容,如果未能解决你的问题,请参考以下文章
将 mp3 转换为 ogg 然后 zip 的简单方法? (Python 3)[关闭]