从视频和视频中抓取随机帧 制作 gif 图像 - Java
我想知道是否可以从视频中抓取随机帧,然后将这些帧“粘贴”在一起以制作 gif 图像?
我打算通过Java编程来实现上述想法。
我应该用什么? (虽然我精通Java,但以前没有涉及视频的编程经验)
I want to know if it's possible to grab random frames from a video and then "stick" these frames together to make a gif image?
I intend to achieve the above said idea by programming in Java.
What should I use? (I have no previous experience in programming involving videos, although am proficient in Java)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Java Media Framework 可让您执行此类操作
The Java Media Framework let you do this kind of things
以下是一些使用 Xuggler 的源代码,可让您从视频中获取原始图像。 从 Java 保存到图像就非常简单了。
示例代码。
Here's some source code using Xuggler that lets you get the raw images from a video. Saving to an image from Java is then pretty straightforward.
Sample Code.