使用 JMF 录制视频所需的 jar

发布于 2024-09-30 18:31:15 字数 261 浏览 0 评论 0原文

jar 文件列表中哪些是用于录制视频的 jar

1)jmf.jar 2)多人游戏.jar 3)mediaplayer.jar 4)声音.jar 5)customizer.jar

我正在尝试使用包含 JMF 类的小程序录制视频,当我在未安装 JMF 的系统中尝试此小程序时,我没有获得任何视频和音频属性,就像在安装了 JMF 的系统中一样.如何在当前未安装 JMF 的系统中的小程序中获取视频和音频属性,

我仅添加 jmf.jar,我必须添加所有这些库才能正常工作?

which are the jars used to record video from the list of jar files

1)jmf.jar
2)multiplayer.jar
3)mediaplayer.jar
4)sound.jar
5)customizer.jar

i am trying to record a video using an applet which contains JMF class,when i tried this applet in a system which doesnt have JMF installed i am not getting any video and audio properties like in a system which has JMF installed.how can i get video and audio properties in an applet in a system which has no JMF installed

currently i am adding only jmf.jar,i have to add all these libraries for this to work?

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

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

发布评论

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

评论(1

请帮我爱他 2024-10-07 18:31:15

您需要添加到类路径并与应用程序一起部署的唯一一个是 JMF.jar。它包含录制视频所需的所有类。

至于获取音频和视频属性,您有两种选择。第一个是要求或指导用户安装 JMF,然后才能使用您的小程序。我认为这不是你想要的。另一种是手动设置客户端计算机以使用 JMF。底层的 a/v 处理由 Windows 上的一组 dll 和 linu/unix 上的 .so 处理。实际上,您可以查看我的另一篇文章,了解如何在未安装 JMF 的情况下使用 JMF 的视频录制属性:位于此处

您需要先复制 dll 并初始化 jmf.properties 文件,然后才能在客户端上执行任何视频录制。

The only one you need to add to the classpath and deploy with your application is JMF.jar. It contains all the classes you will need to record video.

As for getting the audio and video properties, you have two options. The first is to require or instruct the user to install JMF before they can use your applet. I don't think this is what you want. The other is to set up the client machine manually to use JMF. The underlying a/v processing is handled by a set of dll's on windows and .so's on linu/unix. You can actually check out my other post for using the video recording properties of JMF without it being installed: located here

You'll need to perform the copying of the dlls and initalize the jmf.properties file before you can perform any video recording on the client.

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