如何在 php 中将 .wav 转换为 .mp3 文件
我目前正在使用 CodeIgniter 框架开发一个网站,在其中一个过程中我需要下载 .wav 音乐文件并将其转换为 .mp3 文件。 所有编码只需要在 PHP 中完成,我不能使用 Ruby 或 java 来完成。
我目前正在共享环境(即 Dreamhost)上托管。
所以请让我知道如何解决这个问题。
I am currently developing a website using the CodeIgniter framework and in one of the Process I need to download a .wav music file and convert it to .mp3 file.
All the coding needs to be done only in PHP and I cannot use Ruby or java to do so.
And I am currently hosting on a shared env i.e. Dreamhost.
So please let me know how to work out this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用FFMPEG。有一个 PHP 扩展,但我发现只需调用
exec( )
。我使用过的大多数主机(甚至共享主机)都会安装它(如果它尚不可用)。编辑: Dreamhost 为您提供了此功能。请参阅:http://wiki.dreamhost.com/FFmpeg
还有这个:http://wiki.dreamhost.com/Php-ffmpeg
Use FFMPEG. There is a PHP extension for it, but I've found better success just calling
exec()
. Most hosts I have used (even shared hosting) will install it if it isn't already available.Edit: Dreamhost provides this for you. See this: http://wiki.dreamhost.com/FFmpeg
And this: http://wiki.dreamhost.com/Php-ffmpeg