用于创建视频的 Java 库

发布于 2024-09-27 06:25:25 字数 82 浏览 2 评论 0原文

我想知道在哪里可以找到第三方java库,特别是我正在寻找可以从照片生成视频的东西,例如power point但用于视频的东西......有什么建议吗?

I would like to know where to find third-party java libraries, specifically I'm looking for something that could generate a video from photos, something like power point but for videos... Any suggestion?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

向日葵 2024-10-04 06:25:25

Java Media Framework 是一个废弃的 Sun API能够将图像转换为MOV格式视频。

JMF 提供了一些名为 JpegImagesToMovie(1) 的示例代码,它就做到了这一点,但它假设每个 JPEG 都是恒定帧速率动画中的单个图像。换句话说,如果动画要显示一张图像两秒,然后下一秒淡入下一张图像,最终结果是以 10 FPS 重播,那么需要 30 张图像。程序员有责任提供单独的图像和图像过渡帧。

(1) 我本想链接到 Sun 版本,但自从切换到 Oracle 后,所有 JMF 示例代码似乎都消失了。

The Java Media Framework is an abandoned Sun API that is capable of turning images into MOV format video.

JMF provides some sample code called JpegImagesToMovie(1) that did just that, but it assumed that each JPEG was a single image in a constant frame rate animation. In other words, if the animation was to display one image for two seconds, then spend the next second fading into the next image, and the end result was to be replayed at 10 FPS, then it would take 30 images. It would be the programmer's responsibility to provide the individual images, and image transition frames.

(1) I'd have linked to the Sun version, but since the changeover to Oracle, all the JMF sample code seems to have disappeared.

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