如何使用小程序从 Java 中的网络摄像头捕获视频?

发布于 2024-11-02 13:00:28 字数 119 浏览 1 评论 0原文

我正在研究使用 java 小程序通过网络捕获和流式传输视频。到目前为止,JMF 似乎已经过时,FMJ 无法以任何合理的速度进行捕获。是否有任何其他库可以用来以至少每秒 10-15 帧的速度从网络摄像头捕获和/或流式传输视频?

I am loking into capturing and streaming video over the network using a java applet. So far, it looks like JMF is outdated and FMJ won't be able to capture at any reasonable speed. Is there any other library that I can use to go about capturing and or streaming video from a webcam at at least 10-15 frames per second?

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

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

发布评论

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

评论(1

梦境 2024-11-09 13:00:28

我最近做了这件事,必须编写一个 JNI 来捕获视频并对其进行编码或解码。

这很痛苦,因为您必须为每个平台编写 JNI,例如 Windows 32 和 64 位、OSX 32 和 64 位以及 Linux 32 和 64 位。

使用 JNLP(Java Web Start)是比小程序更好的选择,因为它允许您进行设置,以便它会自动下载并安装适用于当前操作系统的正确 JNI。

JNLP 或 Applet 都需要您生成签名的 jar 才能工作。

I have done this recently and had to write a JNI to capture the video and encode it or decode it.

It is a pain because you have to write the JNI for each platform like Windows 32 and 64 bit, OSX 32 and 64 bit and Linux 32 and 64 bit.

Using JNLP (Java web start) is a better choice than an applet as it allows you to set it up so it will automatically download and install the correct JNI for the current O/S.

Either a JNLP or Applet will require you to generate a signed jar to work.

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