如何保存视频/quicktime 视频中的图像?
您好,PHP 有没有办法保存视频/quicktime 视频中的图像?
Hello is there a way in PHP to save an image from video/quicktime video ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
您好,PHP 有没有办法保存视频/quicktime 视频中的图像?
Hello is there a way in PHP to save an image from video/quicktime video ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
这在纯 PHP 中是不可能的。您必须使用外部命令行工具,例如 ffmpeg - 但这使得脚本不易移植到其他服务器。
唯一想到的另一个想法是快照插件长尾视频播放器。这样,您可以手动将视频播放器(可嵌入的 Flash 播放器)中播放的视频的快照发送到服务器端脚本。不过,该过程无法自动化,并且视频必须是 FLV 或 MP4 格式才能实现。
It's not possible in pure PHP. You would have to use an external command line tool like ffmpeg - but that makes the script less portable to other servers.
The only other idea that comes to mind is the Snapshot plugin to the LongTail Video player. With that, you can manually send snapshots of a video playing in the video player (an embeddable Flash player) to a server side script. The process can't be automated, though, and the video will need to be a FLV or MP4 one for this to work.