最简单的基于FFmpeg的AVDevice例子(屏幕录制)
Posted 朱韦刚
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最简单的基于FFmpeg的AVDevice例子(屏幕录制)相关的知识,希望对你有一定的参考价值。
原文地址:http://blog.csdn.net/leixiaohua1020/article/details/39706721 雷神的博客,致敬雷神。
抓屏方法
上篇文章记录了libavdevice的使用方法,本文不再重复。在Windows系统使用libavdevice抓取屏幕数据有两种方法:gdigrab和dshow。下文分别介绍。
1. gdigrab
gdigrab是FFmpeg专门用于抓取Windows桌面的设备。非常适合用于屏幕录制。它通过不同的输入URL支持两种方式的抓取:
(1)“desktop”:抓取整张桌面。或者抓取桌面中的一个特定的区域。
(2)“title=窗口名称”:抓取屏幕中特定的一个窗口(目前中文窗口还有乱码问题)。
gdigrab另外还支持一些参数,用于设定抓屏的位置:
offset_x:抓屏起始点横坐标。
offset_y:抓屏起始点纵坐标。
video_size:抓屏的大小。
framerate:抓屏的帧率。
参考的代码如下:
- //Use gdigrab
- AVDictionary* options = NULL;
- //Set some options
- //grabbing frame rate
- //av_dict_set(&options,"framerate","5",0);
- //The distance from the left edge of the screen or desktop
- //av_dict_set(&options,"offset_x","20",0);
- //The distance from the top edge of the screen or desktop
- //av_dict_set(&options,"offset_y","40",0);
- //Video frame size. The default is to capture the full screen
- //av_dict_set(&options,"video_size","640x480",0);
- AVInputFormat *ifmt=av_find_input_format("gdigrab");
- if(avformat_open_input(&pFormatCtx,"desktop",ifmt,&options)!=0)
- printf("Couldn't open input stream.(无法打开输入流)\\n");
- return -1;
2. dshow
使用dshow抓屏需要安装抓屏软件:screen-capture-recorder
软件地址: http://sourceforge.net/projects/screencapturer/
下载软件安装完成后,可以指定dshow的输入设备为“screen-capture-recorder”即可。有关dshow设备的使用方法在上一篇文章中已经有详细叙述,这里不再重复。参考的代码如下:
[cpp] view plain copy
- AVInputFormat *ifmt=av_find_input_format("dshow");
- if(avformat_open_input(&pFormatCtx,"video=screen-capture-recorder",ifmt,NULL)!=0)
- printf("Couldn't open input stream.(无法打开输入流)\\n");
- return -1;
注:上述两种抓屏方法也可以直接使用ffmpeg.exe的命令行完成,可以参考文章:
FFmpeg获取DirectShow设备数据(摄像头,录屏)
在Linux下可以使用x11grab抓屏,在MacOS下可以使用avfoundation抓屏,在这里不再详细叙述。
代码
下面直接贴上程序代码:
[cpp] view plain copy- /**
- * 最简单的基于FFmpeg的AVDevice例子(屏幕录制)
- * Simplest FFmpeg Device (Screen Capture)
- *
- * 雷霄骅 Lei Xiaohua
- * leixiaohua1020@126.com
- * 中国传媒大学/数字电视技术
- * Communication University of China / Digital TV Technology
- * http://blog.csdn.net/leixiaohua1020
- *
- * 本程序实现了屏幕录制功能。可以录制并播放桌面数据。是基于FFmpeg
- * 的libavdevice类库最简单的例子。通过该例子,可以学习FFmpeg中
- * libavdevice类库的使用方法。
- * 本程序在Windows下可以使用2种方式录制屏幕:
- * 1.gdigrab: Win32下的基于GDI的屏幕录制设备。
- * 抓取桌面的时候,输入URL为“desktop”。
- * 2.dshow: 使用Directshow。注意需要安装额外的软件screen-capture-recorder
- * 在Linux下可以使用x11grab录制屏幕。
- * 在MacOS下可以使用avfoundation录制屏幕。
- *
- * This software capture screen of computer. It's the simplest example
- * about usage of FFmpeg's libavdevice Library.
- * It's suiltable for the beginner of FFmpeg.
- * This software support 2 methods to capture screen in Microsoft Windows:
- * 1.gdigrab: Win32 GDI-based screen capture device.
- * Input URL in avformat_open_input() is "desktop".
- * 2.dshow: Use Directshow. Need to install screen-capture-recorder.
- * It use x11grab to capture screen in Linux.
- * It use avfoundation to capture screen in MacOS.
- */
- #include <stdio.h>
- #define __STDC_CONSTANT_MACROS
- #ifdef _WIN32
- //Windows
- extern "C"
- #include "libavcodec/avcodec.h"
- #include "libavformat/avformat.h"
- #include "libswscale/swscale.h"
- #include "libavdevice/avdevice.h"
- #include "SDL/SDL.h"
- ;
- 最简单的基于FFmpeg的AVDevice样例(读取摄像头)