@03apples - I am certain that they exist for C/C++, but I don't know about DBPro specific plug-ins. Windows has VIDCAP capablilities, and exposes them in a few ways.
This works like any other resource in Windows, there are a few ways Windows exposes it. The .NET and newer ways all require that you are able to provide a few things that DBPro does not do out of the box, most notably...provide callback function addresses, and process a message queue. Beneath that is the more ancient API, in this case there are two, Video For Windows, or vfw32.dll, and also the ancient but not to be overlooked by the wise MCI interface exposed by Windows in the dll, winmm.dll. The MCI interface can be use from DBPro at a somewhat lesser functionality in terms of how you use it. (You will have to poll it if you are not going to create the plug-in necessary to do it the more advanced way.)
DirectX also has video capture capabliities, but...I have not examined using DX alongside DBPro, it is likely a pretty delicate process.
Naturally, I would love it if someone posted a link to a useable plug-in, but...if such a plug-in does not yet exist, we should get right on fixing that ASAP.
EDIT: Sorry H4ck1d, I sat on this too long, great!