ffmpeg录屏鼠标闪烁问题解决方法
场景:
平台:win7 x64。显卡很差的电脑,使用ffmpeg录屏,鼠标闪烁的几乎看不到。录屏实现方法是使用ffmpeg,源采用的是gdigrab。
解决方法:
- 安装screen capture recorder
- 安装ffmpeg,执行命令ffmpeg.exe -f dshow -i video="screen-capture-recorder" v-out.mp4,进行录屏测试
- 鼠标闪烁问题解决。对应的修改录屏代码:
AVInputFormat *ifmt=av_find_input_format("dshow"); AVDictionary *options = NULL; av_dict_set(&options, "framerate", "20", NULL); if(avformat_open_input(&pFormatCtx_Video, "screen-capture-recorder", ifmt, &options)!=0) { printf("Couldn't open input stream.(无法打开视频输入流)\n"); return -1; }
参考文章
本文来自博客园,作者:撬动未来的支点,转载请注明原文链接:https://www.cnblogs.com/pivotfuture/p/16297372.html
CSDN:撬动未来的支点,公众号:Qt未来工程师,网站:www.qtfuture.cn