最简单的基于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:抓屏的帧率。
参考的代码如下:

[cpp]  view plain  copy
  1. //Use gdigrab  
  2.  AVDictionary* options = NULL;  
  3.  //Set some options  
  4.  //grabbing frame rate  
  5.  //av_dict_set(&options,"framerate","5",0);  
  6.  //The distance from the left edge of the screen or desktop  
  7.  //av_dict_set(&options,"offset_x","20",0);  
  8.  //The distance from the top edge of the screen or desktop  
  9.  //av_dict_set(&options,"offset_y","40",0);  
  10.  //Video frame size. The default is to capture the full screen  
  11.  //av_dict_set(&options,"video_size","640x480",0);  
  12.  AVInputFormat *ifmt=av_find_input_format("gdigrab");  
  13.  if(avformat_open_input(&pFormatCtx,"desktop",ifmt,&options)!=0)  
  14.   printf("Couldn't open input stream.(无法打开输入流)\\n");  
  15.   return -1;  
  16.     

2. dshow
使用dshow抓屏需要安装抓屏软件:screen-capture-recorder
软件地址: http://sourceforge.net/projects/screencapturer/
下载软件安装完成后,可以指定dshow的输入设备为“screen-capture-recorder”即可。有关dshow设备的使用方法在上一篇文章中已经有详细叙述,这里不再重复。参考的代码如下:
[cpp]  view plain  copy
  1. AVInputFormat *ifmt=av_find_input_format("dshow");  
  2.  if(avformat_open_input(&pFormatCtx,"video=screen-capture-recorder",ifmt,NULL)!=0)  
  3.   printf("Couldn't open input stream.(无法打开输入流)\\n");  
  4.   return -1;  
  5.    

注:上述两种抓屏方法也可以直接使用ffmpeg.exe的命令行完成,可以参考文章:

FFmpeg获取DirectShow设备数据(摄像头,录屏)

在Linux下可以使用x11grab抓屏,在MacOS下可以使用avfoundation抓屏,在这里不再详细叙述。

代码

下面直接贴上程序代码:

[cpp]  view plain  copy
  1. /** 
  2.  * 最简单的基于FFmpeg的AVDevice例子(屏幕录制) 
  3.  * Simplest FFmpeg Device (Screen Capture) 
  4.  * 
  5.  * 雷霄骅 Lei Xiaohua 
  6.  * leixiaohua1020@126.com 
  7.  * 中国传媒大学/数字电视技术 
  8.  * Communication University of China / Digital TV Technology 
  9.  * http://blog.csdn.net/leixiaohua1020 
  10.  * 
  11.  * 本程序实现了屏幕录制功能。可以录制并播放桌面数据。是基于FFmpeg 
  12.  * 的libavdevice类库最简单的例子。通过该例子,可以学习FFmpeg中 
  13.  * libavdevice类库的使用方法。 
  14.  * 本程序在Windows下可以使用2种方式录制屏幕: 
  15.  *  1.gdigrab: Win32下的基于GDI的屏幕录制设备。 
  16.  *             抓取桌面的时候,输入URL为“desktop”。 
  17.  *  2.dshow: 使用Directshow。注意需要安装额外的软件screen-capture-recorder 
  18.  * 在Linux下可以使用x11grab录制屏幕。 
  19.  * 在MacOS下可以使用avfoundation录制屏幕。 
  20.  * 
  21.  * This software capture screen of computer. It's the simplest example 
  22.  * about usage of FFmpeg's libavdevice Library.  
  23.  * It's suiltable for the beginner of FFmpeg. 
  24.  * This software support 2 methods to capture screen in Microsoft Windows: 
  25.  *  1.gdigrab: Win32 GDI-based screen capture device. 
  26.  *             Input URL in avformat_open_input() is "desktop". 
  27.  *  2.dshow: Use Directshow. Need to install screen-capture-recorder. 
  28.  * It use x11grab to capture screen in Linux. 
  29.  * It use avfoundation to capture screen in MacOS. 
  30.  */  
  31.   
  32.   
  33. #include <stdio.h>  
  34.   
  35. #define __STDC_CONSTANT_MACROS  
  36.   
  37. #ifdef _WIN32  
  38. //Windows  
  39. extern "C"  
  40.   
  41. #include "libavcodec/avcodec.h"  
  42. #include "libavformat/avformat.h"  
  43. #include "libswscale/swscale.h"  
  44. #include "libavdevice/avdevice.h"  
  45. #include "SDL/SDL.h"  
  46. ;  
  47. 最简单的基于FFmpeg的AVDevice样例(读取摄像头)

    最简单的基于FFmpeg的移动端例子:IOS HelloWorld

    最简单的基于FFmpeg的AVfilter的例子-纯净版

    最简单的基于FFmpeg的移动端例子:IOS 推流器

    最简单的基于FFmpeg的移动端例子:IOS 视频解码器

    最简单的基于FFmpeg的移动端例子:IOS 视频转码器