required jars for video recording using JMF

我的梦境 提交于 2019-12-12 05:29:33

问题


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?


回答1:


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.



来源:https://stackoverflow.com/questions/4079929/required-jars-for-video-recording-using-jmf

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!