如何从视频中提取图像以将其用作缩略图
我正在使用 JW 播放器来播放我的视频。我只是想知道如何从视频中分割图像,我的用户为我的播放器上传视频。在左侧,如果我单击图像,则我想显示视频的图像,相应的视频路径会通过单击事件,因此我需要视频中的图像,以便可以使用 php 或 js 将视频中的图像分开,或者是否还有其他方法可以执行此操作,请指导我
i am using JW player to streaming my video. i just wants to know how to split the images from the video , my users uploading the video for my player.In the left hand side I wants to display the images of the video if i click the image the correspond video path is passed through on click event so for this i need the image from the video so it is possible to split the images from the video using the php or js or else is it any other way to do this please guide me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ffmpeg 从视频中提取图像。
因此
,如果我是你,我会在上传视频时从视频中提取一个帧并将其存储在与视频一样长的某些目录中。
如果你想知道如何从 php 调用 ffmpeg,请参阅
系统
或exec
函数You can use ffmpeg to extract an image from a video.
i.e.
So if I were you I would extract a frame from the video when you upload it and store it in some directories as long as the video
If you are wondering how you can invoke ffmpeg from php see the
system
orexec
functions