0

Here's a great article on capturing video: http://nerdlogger.com/2011/11/03/stream-your-windows-desktop-using-ffmpeg/ it uses UScreenCapture filter. This time I need to use a custom filter, how to write one? And how to register so that FFmpeg can see that?

John Smith
  • 6,129
  • 12
  • 68
  • 123

2 Answers2

1

ffmpeg uses DirectShow video capture devices available in the opreating system, see more details on this forum thread: DirectShow Capture support.

So you need to make a counterpart virtual source device to be picked up by ffmpeg. Your resources are:

Community
  • 1
  • 1
Roman R.
  • 68,205
  • 6
  • 94
  • 158
1

Here's an open source one [if you want to go the dshow route] https://github.com/rdp/screen-capture-recorder-to-video-windows-free Another option would be some type of custom input filter to libav [ffmpeg].

You register it by [in administrator console] regsvr32 dll_name.dll

rogerdpack
  • 62,887
  • 36
  • 269
  • 388