PHP:FLV 到 WMV 转换
如何将 FLV 转换为 WMV?那里有任何脚本或者我可以通过某种方式集成它吗?
谢谢你!!!
How can I convert FLV to WMV? Is there any script around there or some way I can integrate this?
Thank you!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你不能直接用 PHP 来做到这一点。
但是,您可以使用称为 PHP 形式的外部工具(例如
ffmpeg
)。这是一个代码示例:
来源:
http://vexxhost.com/blog/2007/05/20/how-to-convertencode-files-to-flv-using-ffmpeg-php/
http://ubuntuforums.org/showpost.php?p=7315615&postcount=10
I don't think you can do this directly with PHP.
But, you can use external tools called form PHP (
ffmpeg
for example).Here is a code sample:
Sources:
http://vexxhost.com/blog/2007/05/20/how-to-convertencode-files-to-flv-using-ffmpeg-php/
http://ubuntuforums.org/showpost.php?p=7315615&postcount=10
您会发现的所有解决方案都将使用
ffmpeg
,因为这是易于在服务器上安装,甚至更易于通过 PHP 脚本使用。大多数时候你可以这样做:All solutions you will find are going to use
ffmpeg
, because that's easy to install on servers and even easier to utilize from PHP scripts. Most always you can just do: