How to convert all audio formats to mp3 in php
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Using ffmpeg can be helpful. For details http://ffmpeg.org/
回答2:
at first you install ffmpeg on your system. (it is free), then in PHP you can call the ffmpeg to convert any audio file to mp3 using the system command like this:
<?php
$output = system("ffmpeg parameters...");
echo $output;
?>
see the ffmpeg documentation for examples how to call ffmpeg.