捕获视频和以.3gp格式(fmj)存储在硬盘上
我想开发一个 java 应用程序来从 USB 网络摄像头捕获视频并以 .3gp 格式存储到硬盘上。
请向我提供以 .3gp 格式存储视频的工作代码(如果有)。请帮助我的朋友们。
I want to develop a java application to capture video from a usb web cam and store in .3gp format onto the hard disk.
Please provide me working code (if any) that stores the video in .3gp format.please help me friends.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须从相机中抓取每一帧,然后应用与 3gp 格式相关的编码。看到这个,http://www.mediasoftpro.com/aspnet-3gp-encoder.html
You will have to grab each frame from camera and then apply the coding associated with 3gp format. See this, http://www.mediasoftpro.com/aspnet-3gp-encoder.html
假设您已经从相机中获得了网络图像,您可以使用 Xuggler 将它们编码为 3gp文件中的任何编解码器你想要的。
Assuming you have the web-images from your camera already, you can use Xuggler to encode them into a 3gp file in whatever codecs you want.