How to convert a web form uploaded mp3 to wav using PHP and ffmpeg?

对着背影说爱祢 提交于 2019-12-25 08:52:33

问题


I have a form where the admin can upload an mp3. Is it possible to use ffmpeg from PHP to convert that mp3 to wav when I process the form submission?


回答1:


Second google result: ffmpeg -i foo.mp3 -acodec pcm_s16le bar.wav. Wrap that with a shell_exec.



来源:https://stackoverflow.com/questions/15099921/how-to-convert-a-web-form-uploaded-mp3-to-wav-using-php-and-ffmpeg

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!