motion源代码分析

2024-08-31 06:58
文章标签 分析 源代码 motion

本文主要是介绍motion源代码分析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

转自:http://blog.csdn.net/sakaue/article/details/22816475

 

楔子

前几天研究了如何将ffmpeg编入motion,并实现录像功能。现在研究下motion的工作流程。

 

几个主要模块

 

motion.c主程序,视频采集编码主循环
ffmpeg.c一个代理模块,封装了ffmpeg的方法,根据v4l获取的数据编码录像
video.2.c提供video4linux功能
video_common.c封装video.2.c中功能,为motion.c提供支持
vebhttpd.c向客户端提供控制功能
webcam.c向客户端提供实时图像服务(浏览器刷图片)

 

 

正文

照例从main函数进入。在这里,main起了两个线程,一个是集视频采集录像放送于一体的motion_loop:

 

[cpp] view plain copy

  1. /* Start the motion threads. First 'cnt_list' item is global if 'thread' 
  2.  * option is used, so start at 1 then and 0 otherwise. 
  3.  */  
  4. for (i = cnt_list[1] != NULL ? 1 : 0; cnt_list[i]; i++) {  
  5.     /* If i is 0 it means no thread files and we then set the thread number to 1 */  
  6.     cnt_list[i]->threadnr = i ? i : 1;  
  7.   
  8.     if (strcmp(cnt_list[i]->conf_filename,"") )  
  9.         motion_log(LOG_INFO, 0, "Thread %d is from %s", cnt_list[i]->threadnr, cnt_list[i]->conf_filename );  
  10.   
  11.         if (cnt_list[0]->conf.setup_mode) {  
  12.             motion_log(-1, 0, "Thread %d is device: %s input %d", cnt_list[i]->threadnr,  
  13.                        cnt_list[i]->conf.netcam_url ? cnt_list[i]->conf.netcam_url : cnt_list[i]->conf.video_device,  
  14.                        cnt_list[i]->conf.netcam_url ? -1 : cnt_list[i]->conf.input  
  15.                        );  
  16.         }  
  17.   
  18.         if (cnt_list[0]->conf.setup_mode)  
  19.             motion_log(LOG_ERR, 0, "Webcam port %d", cnt_list[i]->conf.webcam_port);  
  20.   
  21.         start_motion_thread(cnt_list[i], &thread_attr); //在这里启动线程函数motion_loop  
  22. }  

一个是用于web控制的motion_web_control:

 

 

[cpp] view plain copy

  1. /* Create a thread for the control interface if requested. Create it 
  2.  * detached and with 'motion_web_control' as the thread function. 
  3.  */  
  4. if (cnt_list[0]->conf.control_port)  
  5.     pthread_create(&thread_id, &thread_attr, &motion_web_control, cnt_list); //启动线程函数motion_web_control  

 

而main中的迭代主要负责一些统计任务。我们主要关心motion的核心——motion_loop。

 

刷照片的效果实在太挫了,让我们看看如何打开ffmpeg录像的配置。这里需要修改motion-dist.conf中的两个选项(采用默认值则不会录像):

[cpp] view plain copy

  1. # Use ffmpeg to encode a timelapse movie   
  2. # Default value 0 = off - else save frame every Nth second  
  3. ffmpeg_timelapse 1  
  4.   
  5.   
  6. # Enables and defines variable bitrate for the ffmpeg encoder.  
  7. # ffmpeg_bps is ignored if variable bitrate is enabled.  
  8. # Valid values: 0 (default) = fixed bitrate defined by ffmpeg_bps,  
  9. # or the range 2 - 31 where 2 means best quality and 31 is worst.  
  10. ffmpeg_variable_bitrate 1  

第一个选项是设置每一秒保存帧(帧的数量由配置文件中的framerate决定 ),第二个选项设置ffmpeg编码的比特率。下面还有个选项:

[cpp] view plain copy

  1. # Codec to used by ffmpeg for the video compression.  
  2. # Timelapse mpegs are always made in mpeg1 format independent from this option.  
  3. # Supported formats are: mpeg1 (ffmpeg-0.4.8 only), mpeg4 (default), and msmpeg4.  
  4. # mpeg1 - gives you files with extension .mpg  
  5. # mpeg4 or msmpeg4 - gives you files with extension .avi  
  6. # msmpeg4 is recommended for use with Windows Media Player because  
  7. # it requires no installation of codec on the Windows client.  
  8. # swf - gives you a flash film with extension .swf  
  9. # flv - gives you a flash video with extension .flv  
  10. # ffv1 - FF video codec 1 for Lossless Encoding ( experimental )  
  11. # mov - QuickTime ( testing )  
  12. ffmpeg_video_codec mpeg4  

这个其实该不该无所谓,因为编码器的格式在里面是写死的,稍后会提到。motion的录像在motion_loop(motion.c:1698)当中:

 

[cpp] view plain copy

  1. #ifdef HAVE_FFMPEG  
  2.   
  3.   
  4.   
  5.         if (cnt->conf.timelapse) {  
  6.   
  7.             /* Check to see if we should start a new timelapse file. We start one when 
  8.              * we are on the first shot, and and the seconds are zero. We must use the seconds 
  9.              * to prevent the timelapse file from getting reset multiple times during the minute. 
  10.              */  
  11.             if (cnt->current_image->timestamp_tm.tm_min == 0 &&  
  12.                 (time_current_frame % 60 < time_last_frame % 60) &&  
  13.                 cnt->shots == 0) {  
  14.   
  15.                 if (strcasecmp(cnt->conf.timelapse_mode,"manual") == 0) {  
  16.                     ;/* No action */  
  17.   
  18.                 /* If we are daily, raise timelapseend event at midnight */  
  19.                 } else if (strcasecmp(cnt->conf.timelapse_mode, "daily") == 0) {  //根据配置文件中ffmpeg_timelapse_mode的选则执行相应代码  
  20.                     if (cnt->current_image->timestamp_tm.tm_hour == 0)  
  21.                         event(cnt, EVENT_TIMELAPSEEND, NULL, NULL, NULL,   
  22.                               &cnt->current_image->timestamp_tm);  
  23.   
  24.                 /* handle the hourly case */  
  25.                 } else if (strcasecmp(cnt->conf.timelapse_mode, "hourly") == 0) {  
  26.                     event(cnt, EVENT_TIMELAPSEEND, NULL, NULL, NULL,   
  27.                           &cnt->current_image->timestamp_tm);  
  28.   
  29.                 /* If we are weekly-sunday, raise timelapseend event at midnight on sunday */  
  30.                 } else if (strcasecmp(cnt->conf.timelapse_mode, "weekly-sunday") == 0) {  
  31.                     if (cnt->current_image->timestamp_tm.tm_wday == 0 && cnt->current_image->timestamp_tm.tm_hour == 0)  
  32.                         event(cnt, EVENT_TIMELAPSEEND, NULL, NULL, NULL, &cnt->current_image->timestamp_tm);  
  33.   
  34.                 /* If we are weekly-monday, raise timelapseend event at midnight on monday */      
  35.                 } else if (strcasecmp(cnt->conf.timelapse_mode, "weekly-monday") == 0) {  
  36.                     if (cnt->current_image->timestamp_tm.tm_wday == 1 && cnt->current_image->timestamp_tm.tm_hour == 0)  
  37.                         event(cnt, EVENT_TIMELAPSEEND, NULL, NULL, NULL, &cnt->current_image->timestamp_tm);  
  38.   
  39.                 /* If we are monthly, raise timelapseend event at midnight on first day of month */      
  40.                 } else if (strcasecmp(cnt->conf.timelapse_mode, "monthly") == 0) {  
  41.                     if (cnt->current_image->timestamp_tm.tm_mday == 1 && cnt->current_image->timestamp_tm.tm_hour == 0)  
  42.                         event(cnt, EVENT_TIMELAPSEEND, NULL, NULL, NULL, &cnt->current_image->timestamp_tm);  
  43.   
  44.                 /* If invalid we report in syslog once and continue in manual mode */      
  45.                 } else {  
  46.                     motion_log(LOG_ERR, 0, "Invalid timelapse_mode argument '%s'",  
  47.                                cnt->conf.timelapse_mode);  
  48.                     motion_log(LOG_ERR, 0, "Defaulting to manual timelapse mode");  
  49.                     conf_cmdparse(&cnt, (char *)"ffmpeg_timelapse_mode",(char *)"manual");  
  50.                 }  
  51.             }  
  52.   
  53.             /* If ffmpeg timelapse is enabled and time since epoch MOD ffmpeg_timelaps = 0 
  54.              * add a timelapse frame to the timelapse mpeg. 
  55.              */  
  56.             if (cnt->shots == 0 &&  
  57.                 time_current_frame % cnt->conf.timelapse <= time_last_frame % cnt->conf.timelapse)  
  58.                 event(cnt, EVENT_TIMELAPSE, cnt->current_image->image, NULL, NULL,   
  59.                       &cnt->current_image->timestamp_tm);     // Line:1757 在这里创建并保存录制的视频  
  60.         } else if (cnt->ffmpeg_timelapse) {  
  61.         /* if timelapse mpeg is in progress but conf.timelapse is zero then close timelapse file 
  62.          * This is an important feature that allows manual roll-over of timelapse file using the http 
  63.          * remote control via a cron job. 
  64.          */  
  65.             event(cnt, EVENT_TIMELAPSEEND, NULL, NULL, NULL, cnt->currenttime_tm);   
  66.         }  
  67.   
  68. #endif /* HAVE_FFMPEG */  

执行录制视频的方法在1757行,根据EVENT_TIMELAPSE,它对应的方法叫event_ffmpeg_timelapse

 

 

[cpp] view plain copy

  1. // event.c:673  
  2.   
  3. {  
  4. EVENT_TIMELAPSE,  
  5. event_ffmpeg_timelapse  
  6. },  

[cpp] view plain copy

  1. // event.c:461  
  2.   
  3. static void event_ffmpeg_timelapse(struct context *cnt,  
  4.             int type ATTRIBUTE_UNUSED, unsigned char *img,  
  5.             char *dummy1 ATTRIBUTE_UNUSED, void *dummy2 ATTRIBUTE_UNUSED,  
  6.             struct tm *currenttime_tm)  
  7. {  
  8.     int width = cnt->imgs.width;  
  9.     int height = cnt->imgs.height;  
  10.     unsigned char *convbuf, *y, *u, *v;  
  11.   
  12.     if (!cnt->ffmpeg_timelapse) {  //只在第一次创建时执行  
  13.         char tmp[PATH_MAX];  
  14.         const char *timepath;  
  15.   
  16.         /* conf.timepath would normally be defined but if someone deleted it by control interface 
  17.            it is better to revert to the default than fail */  
  18.         if (cnt->conf.timepath)  
  19.             timepath = cnt->conf.timepath;  
  20.         else  
  21.             timepath = DEF_TIMEPATH;  
  22.           
  23.         mystrftime(cnt, tmp, sizeof(tmp), timepath, currenttime_tm, NULL, 0);  
  24.           
  25.         /* PATH_MAX - 4 to allow for .mpg to be appended without overflow */  
  26.         snprintf(cnt->timelapsefilename, PATH_MAX - 4, "%s/%s", cnt->conf.filepath, tmp);  
  27.           
  28.         if (cnt->imgs.type == VIDEO_PALETTE_GREY) {  
  29.             convbuf = mymalloc((width * height) / 2);  
  30.             y = img;  
  31.             u = convbuf;  
  32.             v = convbuf+(width * height) / 4;  
  33.             grey2yuv420p(u, v, width, height);  
  34.         } else {  
  35.             convbuf = NULL;  
  36.             y = img;  
  37.             u = img + width * height;  
  38.             v = u + (width * height) / 4;  
  39.         }  
  40.           
  41.         if ((cnt->ffmpeg_timelapse =  
  42.              ffmpeg_open((char *)TIMELAPSE_CODEC, cnt->timelapsefilename, y, u, v,   //#define TIMELAPSE_CODEC "mpeg1_tl"  
  43.                          cnt->imgs.width, cnt->imgs.height, 24, cnt->conf.ffmpeg_bps,  
  44.                          cnt->conf.ffmpeg_vbr)) == NULL) {   // 创建录像文件  
  45.             motion_log(LOG_ERR, 1, "ffopen_open error creating (timelapse) file [%s]", cnt->timelapsefilename);  
  46.             cnt->finish = 1;  
  47.             return;  
  48.         }  
  49.           
  50.         cnt->ffmpeg_timelapse->udata = convbuf;  
  51.         event(cnt, EVENT_FILECREATE, NULL, cnt->timelapsefilename, (void *)FTYPE_MPEG_TIMELAPSE, NULL);  
  52.     }  
  53.       
  54.     y = img;  
  55.       
  56.     if (cnt->imgs.type == VIDEO_PALETTE_GREY)  
  57.         u = cnt->ffmpeg_timelapse->udata;  
  58.     else  
  59.         u = img + width * height;  
  60.       
  61.     v = u + (width * height) / 4;  
  62.     ffmpeg_put_other_image(cnt->ffmpeg_timelapse, y, u, v);  //put图像进录像  
  63.       
  64. }  

其中Line:500,如果是第一次进入,则执行ffmpeg_open:

 

 

[cpp] view plain copy

  1. ffmpeg_open((char *)TIMELAPSE_CODEC,                                // #define TIMELAPSE_CODEC "mpeg1_tl"  
  2.                      cnt->timelapsefilename,                                    // 录像文件名  
  3.                       y, u, v,//#define TIMELAPSE_CODEC "mpeg1_tl"   
  4.                       cnt->imgs.width, cnt->imgs.height,                   // 录像的宽高  
  5.                       24,                                                                 // fps   
  6.                       cnt->conf.ffmpeg_bps,                                    // bps  
  7.                       cnt->conf.ffmpeg_vbr)) == NULL)  

如果不是第一次进入,则会直接执行ffmpeg_put_other_image将图像加入录像。

 

 

更多Linux资料及视频教程点击这里

这篇关于motion源代码分析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1123213

相关文章

性能分析之MySQL索引实战案例

文章目录 一、前言二、准备三、MySQL索引优化四、MySQL 索引知识回顾五、总结 一、前言 在上一讲性能工具之 JProfiler 简单登录案例分析实战中已经发现SQL没有建立索引问题,本文将一起从代码层去分析为什么没有建立索引? 开源ERP项目地址:https://gitee.com/jishenghua/JSH_ERP 二、准备 打开IDEA找到登录请求资源路径位置

SWAP作物生长模型安装教程、数据制备、敏感性分析、气候变化影响、R模型敏感性分析与贝叶斯优化、Fortran源代码分析、气候数据降尺度与变化影响分析

查看原文>>>全流程SWAP农业模型数据制备、敏感性分析及气候变化影响实践技术应用 SWAP模型是由荷兰瓦赫宁根大学开发的先进农作物模型,它综合考虑了土壤-水分-大气以及植被间的相互作用;是一种描述作物生长过程的一种机理性作物生长模型。它不但运用Richard方程,使其能够精确的模拟土壤中水分的运动,而且耦合了WOFOST作物模型使作物的生长描述更为科学。 本文让更多的科研人员和农业工作者

MOLE 2.5 分析分子通道和孔隙

软件介绍 生物大分子通道和孔隙在生物学中发挥着重要作用,例如在分子识别和酶底物特异性方面。 我们介绍了一种名为 MOLE 2.5 的高级软件工具,该工具旨在分析分子通道和孔隙。 与其他可用软件工具的基准测试表明,MOLE 2.5 相比更快、更强大、功能更丰富。作为一项新功能,MOLE 2.5 可以估算已识别通道的物理化学性质。 软件下载 https://pan.quark.cn/s/57

衡石分析平台使用手册-单机安装及启动

单机安装及启动​ 本文讲述如何在单机环境下进行 HENGSHI SENSE 安装的操作过程。 在安装前请确认网络环境,如果是隔离环境,无法连接互联网时,请先按照 离线环境安装依赖的指导进行依赖包的安装,然后按照本文的指导继续操作。如果网络环境可以连接互联网,请直接按照本文的指导进行安装。 准备工作​ 请参考安装环境文档准备安装环境。 配置用户与安装目录。 在操作前请检查您是否有 sud

线性因子模型 - 独立分量分析(ICA)篇

序言 线性因子模型是数据分析与机器学习中的一类重要模型,它们通过引入潜变量( latent variables \text{latent variables} latent variables)来更好地表征数据。其中,独立分量分析( ICA \text{ICA} ICA)作为线性因子模型的一种,以其独特的视角和广泛的应用领域而备受关注。 ICA \text{ICA} ICA旨在将观察到的复杂信号

【软考】希尔排序算法分析

目录 1. c代码2. 运行截图3. 运行解析 1. c代码 #include <stdio.h>#include <stdlib.h> void shellSort(int data[], int n){// 划分的数组,例如8个数则为[4, 2, 1]int *delta;int k;// i控制delta的轮次int i;// 临时变量,换值int temp;in

三相直流无刷电机(BLDC)控制算法实现:BLDC有感启动算法思路分析

一枚从事路径规划算法、运动控制算法、BLDC/FOC电机控制算法、工控、物联网工程师,爱吃土豆。如有需要技术交流或者需要方案帮助、需求:以下为联系方式—V 方案1:通过霍尔传感器IO中断触发换相 1.1 整体执行思路 霍尔传感器U、V、W三相通过IO+EXIT中断的方式进行霍尔传感器数据的读取。将IO口配置为上升沿+下降沿中断触发的方式。当霍尔传感器信号发生发生信号的变化就会触发中断在中断

kubelet组件的启动流程源码分析

概述 摘要: 本文将总结kubelet的作用以及原理,在有一定基础认识的前提下,通过阅读kubelet源码,对kubelet组件的启动流程进行分析。 正文 kubelet的作用 这里对kubelet的作用做一个简单总结。 节点管理 节点的注册 节点状态更新 容器管理(pod生命周期管理) 监听apiserver的容器事件 容器的创建、删除(CRI) 容器的网络的创建与删除

PostgreSQL核心功能特性与使用领域及场景分析

PostgreSQL有什么优点? 开源和免费 PostgreSQL是一个开源的数据库管理系统,可以免费使用和修改。这降低了企业的成本,并为开发者提供了一个活跃的社区和丰富的资源。 高度兼容 PostgreSQL支持多种操作系统(如Linux、Windows、macOS等)和编程语言(如C、C++、Java、Python、Ruby等),并提供了多种接口(如JDBC、ODBC、ADO.NET等

OpenCV结构分析与形状描述符(11)椭圆拟合函数fitEllipse()的使用

操作系统:ubuntu22.04 OpenCV版本:OpenCV4.9 IDE:Visual Studio Code 编程语言:C++11 算法描述 围绕一组2D点拟合一个椭圆。 该函数计算出一个椭圆,该椭圆在最小二乘意义上最好地拟合一组2D点。它返回一个内切椭圆的旋转矩形。使用了由[90]描述的第一个算法。开发者应该注意,由于数据点靠近包含的 Mat 元素的边界,返回的椭圆/旋转矩形数据