php自定义函数: amr转mp3格式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php自定义函数: amr转mp3格式相关的知识,希望对你有一定的参考价值。
<?php function amr2mp3($file){ if (file_exists($file . ‘.mp3‘) == true) { return; } else { $params = "-ab 256 -ar 16000 -ac 1 -vol 200";//16000 高质量 $command = "/usr/local/bin/ffmpeg -i $file.amr $params $file.mp3"; system($command, $error); } } ?>
;
以上是关于php自定义函数: amr转mp3格式的主要内容,如果未能解决你的问题,请参考以下文章