高 mp3 质量 -> 使用 PHP 的低转换
如何使用 PHP 将 320 kbps mp3 文件转换为 32 kbps 文件?
How to convert 320 kbps mp3 file into e.g. 32 kbps one using PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 PHP 将 320 kbps mp3 文件转换为 32 kbps 文件?
How to convert 320 kbps mp3 file into e.g. 32 kbps one using PHP?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我想您可以调用一些与 MP3 相关的命令行程序来执行转换。
结果可能比使用纯粹基于 PHP 的库更好1。
例如,lame 在这里可能很有用。
然后,从 PHP 代码中运行该外部程序,您需要使用 程序执行函数,如
exec()
。1. 如果有这样的事情的话
I suppose you could call some command-line MP3-related program that would do the conversion.
The result would probably be better than using a purely-php-based library1.
For example, lame might be useful, here.
Then, from your PHP code, to run that external program, you'll nee to use one of the Program execution Functions, like
exec()
.1. If there is even such a thing