来自 firewire c++ 的视频捕获视窗
我在 Windows 上使用 Eclipse 和 C++,我必须从火线相机捕获视频,但我不知道应该使用哪些库。
我宁愿不安装任何东西,但如果可能的话使用一些库。
如果您还可以发布有关如何捕获视频的代码示例,那将会非常有帮助。
谢谢
I'm using eclipse and c++ on windows and I have to capture a video from a firewire camera but I have no ideas of which libraries should I use.
I prefer to not install anything, but using some libraries if it's possible.
if you can also post a code example of how to capture the video it would be very helpfull.
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows 中的视频捕获 API 是
DirectShow
或Media Foundation
。使用 DirectShow,您可以采用与其他视频源(图像采集卡、网络摄像头等)类似的方式捕获视频。请参阅捕获 firewire 视频:执行此操作需要 DirectShow?。Video capture API in Windows is
DirectShow
orMedia Foundation
. With DirectShow you can capture video in a way similar to other video sources (frame grabbers, web cameras etc). See Capture firewire video: does this require DirectShow?.