如何从视频中提取图像以将其用作缩略图

发布于 2024-10-07 12:53:59 字数 157 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虚拟世界 2024-10-14 12:53:59

您可以使用 ffmpeg 从视频中提取图像。

因此

ffmpeg -i input.dv -r 25 -f image2 images%05d.png

,如果我是你,我会在上传视频时从视频中提取一个帧并将其存储在与视频一样长的某些目录中。

如果你想知道如何从 php 调用 ffmpeg,请参阅 系统exec 函数

You can use ffmpeg to extract an image from a video.

i.e.

ffmpeg -i input.dv -r 25 -f image2 images%05d.png

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 or exec functions

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文