0

这是一篇关于捕获视频的精彩文章:http: //nerdlogger.com/2011/11/03/stream-your-windows-desktop-using-ffmpeg/它使用 UScreenCapture 过滤器。这次需要用到自定义过滤器,怎么写呢?以及如何注册以便 FFmpeg 可以看到?

4

2 回答 2

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:

于 2012-04-10T10:45:47.807 回答
1

这是一个开源的 [如果你想走 dshow 路线] https://github.com/rdp/screen-capture-recorder-to-video-windows-free 另一种选择是 libav 的某种类型的自定义输入过滤器[ffmpeg]。

您通过 [在管理员控制台] 注册它 regsvr32 dll_name.dll

于 2015-01-29T17:29:13.417 回答