How to write an own capture filter?

时光毁灭记忆、已成空白 提交于 2019-12-02 09:45:57
Roman R.

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:

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

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