最简单的基于 FFmpeg 的 AVfilter 例子(水印叠加)

最简单的基于 FFmpeg 的 AVfilter 例子(水印叠加)

  • 最简单的基于 SDL2 的音频播放器
    • 正文
    • 工程文件下载

参考雷霄骅博士的文章,链接:最简单的基于FFmpeg的AVfilter例子(水印叠加)

最简单的基于 SDL2 的音频播放器

正文

FFmpeg 中有一个类库:libavfilter。该类库提供了各种视音频过滤器,有很多现成的 filter 供使用,完成视频的处理很方便。

该例子完成了一个水印叠加的功能。可以将一张透明背景的 png 图片(my_logo.png)作为水印叠加到一个视频文件上。需要注意的是,其叠加工作是在解码后的 YUV 像素数据的基础上完成的。

程序支持使用 SDL1.2 显示叠加后的 YUV 数据,也可以将叠加后的 YUV 输出成文件。

SDL1.2 库的免费下载链接:SDL1.2 - from 雷霄骅.zip

流程图:

请添加图片描述

上面是一张使用 FFmpeg 的 libavfilter 的流程图。可以看出使用 libavfilter 还是需要做不少的初始化工作的。但是使用的时候还是比较简单的,就两个重要的函数:av_buffersrc_add_frame() 和 av_buffersink_get_buffer_ref()。

注:这张图中只列出了和 libavfilter 有关的函数和结构体。代码中其它函数可以参考雷霄骅博士的另一篇文章:100行代码实现最简单的基于FFMPEG+SDL的视频播放器(SDL1.x)

源代码:

// Simplest FFmpeg AVfilter Example.cpp : 定义控制台应用程序的入口点。/**
* 最简单的基于 FFmpeg 的 AVFilter 例子(叠加水印)
* Simplest FFmpeg AVfilter Example (Watermark)
*
* 源程序:
* 雷霄骅 Lei Xiaohua
* leixiaohua1020@126.com
* 中国传媒大学/数字电视技术
* Communication University of China / Digital TV Technology
* http://blog.csdn.net/leixiaohua1020
*
* 修改:
* 刘文晨 Liu Wenchen
* 812288728@qq.com
* 电子科技大学/电子信息
* University of Electronic Science and Technology of China / Electronic and Information Science
* https://blog.csdn.net/ProgramNovice
*
* 本程序使用 FFmpeg 的 AVfilter 实现了视频的水印叠加功能。
* 可以将一张 PNG 图片作为水印叠加到视频上。
* 是最简单的 FFmpeg 的 AVFilter 方面的教程。
* 适合 FFmpeg 的初学者。
*
* This software uses FFmpeg's AVFilter to add watermark in a video file.
* It can add a PNG format picture as watermark to a video file.
* It's the simplest example based on FFmpeg's AVFilter.
* Suitable for beginner of FFmpeg
*
*/#include "stdafx.h"#include <stdio.h>
#include <stdlib.h>// 解决报错:无法解析的外部符号 __imp__fprintf,该符号在函数 _ShowError 中被引用
#pragma comment(lib, "legacy_stdio_definitions.lib")
extern "C"
{// 解决报错:无法解析的外部符号 __imp____iob_func,该符号在函数 _ShowError 中被引用FILE __iob_func[3] = { *stdin, *stdout, *stderr };
}#define __STDC_CONSTANT_MACROS
#ifdef _WIN32
// Windows
extern "C"
{
#include "libavcodec/avcodec.h"
#include "libavformat/avformat.h"
#include "libavfilter/avfiltergraph.h"
#include "libavfilter/buffersink.h"
#include "libavfilter/buffersrc.h"
#include "libavutil/avutil.h"
#include "libswscale/swscale.h"
#include "SDL/SDL.h"
};
#else
// Linux...
#ifdef __cplusplus
extern "C"
{
#endif
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libavfilter/avfiltergraph.h>
#include <libavfilter/buffersink.h>
#include <libavfilter/buffersrc.h>
#include <libavutil/avutil.h>
#include <libswscale/swscale.h>
#include <SDL/SDL.h>
#ifdef __cplusplus
};
#endif
#endifconst char *filter_descr = "movie=logo.png[wm];[in][wm]overlay=5:5[out]";static AVFormatContext *pFormatCtx;
static AVCodecContext *pCodecCtx;AVFilterContext *buffersrc_ctx;
AVFilterContext *buffersink_ctx;
AVFilterGraph *filter_graph;static int video_stream_index = -1;static int open_input_file(const char *filename)
{int ret = 1;AVCodec *dec;if ((ret = avformat_open_input(&pFormatCtx, filename, NULL, NULL)) < 0){printf("Can't open input file.\n");return ret;}if ((ret = avformat_find_stream_info(pFormatCtx, NULL)) < 0){printf("Can't find stream information.\n");}// select the video streamret = av_find_best_stream(pFormatCtx, AVMEDIA_TYPE_VIDEO, -1, -1, &dec, 0);if (ret < 0){printf("Can't find a video stream in the input file.\n");return ret;}video_stream_index = ret;pCodecCtx = pFormatCtx->streams[video_stream_index]->codec;// init the video decoderif ((ret = avcodec_open2(pCodecCtx, dec, NULL)) < 0){printf("Can't open video decoder.\n");return ret;}return 0;
}// 功能:创建配置一个滤镜图,在后续滤镜处理中,可以往此滤镜图输入数据并从滤镜图获得输出数据
static int init_filters(const char *filters_descr)
{// // args 是 buffersrc 滤镜的参数char args[512];int ret;AVFilter *buffersrc = avfilter_get_by_name("buffer");AVFilter *buffersink = avfilter_get_by_name("ffbuffersink");AVFilterInOut *outputs = avfilter_inout_alloc();AVFilterInOut *inputs = avfilter_inout_alloc();enum AVPixelFormat pix_fmts[] = { AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE };AVBufferSinkParams *buffersink_params;filter_graph = avfilter_graph_alloc();// buffer video source: the decoded frames from the decoder will be inserted heresnprintf(args, sizeof(args),"video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:pixel_aspect=%d/%d",pCodecCtx->width, pCodecCtx->height, pCodecCtx->pix_fmt,pCodecCtx->time_base.num, pCodecCtx->time_base.den,pCodecCtx->sample_aspect_ratio.num, pCodecCtx->sample_aspect_ratio.den);// create and add a filter instance into an existing graphret = avfilter_graph_create_filter(&buffersrc_ctx, buffersrc, "in",args, NULL, filter_graph);if (ret < 0){printf("Can't create buffer source.\n");return ret;}// buffer video sink: to terminate the filter chainbuffersink_params = av_buffersink_params_alloc();buffersink_params->pixel_fmts = pix_fmts;ret = avfilter_graph_create_filter(&buffersink_ctx, buffersink, "out",NULL, buffersink_params, filter_graph);av_free(buffersink_params);if (ret < 0){printf("Can't create buffer sink.\n");return ret;}// endpoints for the filter graphoutputs->name = av_strdup("in");outputs->filter_ctx = buffersrc_ctx;outputs->pad_idx = 0;outputs->next = NULL;inputs->name = av_strdup("out");inputs->filter_ctx = buffersink_ctx;inputs->pad_idx = 0;inputs->next = NULL;// add a graph described by a string to a graphret = avfilter_graph_parse_ptr(filter_graph, filters_descr, &inputs, &outputs, NULL);if (ret < 0){return ret;}// check validity and configure all the links and formats in the graphret = avfilter_graph_config(filter_graph, NULL);if (ret < 0){return ret;}return 0;
}int main(int argc, char* argv[])
{int ret;AVPacket packet;AVFrame *pFrame;AVFrame *pFrame_out;int got_frame;int frame_cnt;av_register_all();avfilter_register_all();ret = open_input_file("cuc_ieschool.flv");if (ret < 0){goto end;}ret = init_filters(filter_descr);if (ret < 0){goto end;}FILE *fp_yuv = fopen("test.yuv", "wb+");// 帧计数器frame_cnt = 0;// ---------------------------- SDL 1.2 ----------------------------SDL_Surface *screen;SDL_Overlay *bmp;SDL_Rect rect;// 初始化 SDL 系统if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_TIMER)){printf("Could not initialize SDL - %s\n", SDL_GetError());return -1;}screen = SDL_SetVideoMode(pCodecCtx->width, pCodecCtx->height, 0, 0);if (!screen){printf("SDL: could not set video mode - exiting.\n");return -1;}bmp = SDL_CreateYUVOverlay(pCodecCtx->width, pCodecCtx->height, SDL_YV12_OVERLAY, screen);SDL_WM_SetCaption("Simplest FFmpeg Video Filter", NULL);// ---------------------------- SDL End ----------------------------pFrame = av_frame_alloc();pFrame_out = av_frame_alloc();// read all packetswhile (1){if ((ret = av_read_frame(pFormatCtx, &packet)) < 0){break;}if (packet.stream_index == video_stream_index){got_frame = 0;ret = avcodec_decode_video2(pCodecCtx, pFrame, &got_frame, &packet);if (ret < 0){printf("Decode Error.\n");return -1;}if (got_frame){pFrame->pts = av_frame_get_best_effort_timestamp(pFrame);// push the decoded frame into the filtergraphif (av_buffersrc_add_frame(buffersrc_ctx, pFrame) < 0){printf("Error while feeding the filtergraph.\n");break;}// pull filtered pictures from the filtergraphwhile (1){// get a frame with filtered data from sink and put it in frameret = av_buffersink_get_frame(buffersink_ctx, pFrame_out);if (ret < 0){break;}printf("Process %d frame.\n", frame_cnt);if (pFrame_out->format == AV_PIX_FMT_YUV420P){// Y, U, Vfor (int i = 0; i < pFrame_out->height; i++){fwrite(pFrame_out->data[0] + pFrame_out->linesize[0] * i, 1, pFrame_out->width, fp_yuv);}for (int i = 0; i < pFrame_out->height / 2; i++){fwrite(pFrame_out->data[1] + pFrame_out->linesize[1] * i, 1, pFrame_out->width / 2, fp_yuv);}for (int i = 0; i < pFrame_out->height / 2; i++){fwrite(pFrame_out->data[2] + pFrame_out->linesize[2] * i, 1, pFrame_out->width / 2, fp_yuv);}SDL_LockYUVOverlay(bmp);int y_size = pFrame_out->width*pFrame_out->height;memcpy(bmp->pixels[0], pFrame_out->data[0], y_size); // Ymemcpy(bmp->pixels[2], pFrame_out->data[1], y_size / 4); // Umemcpy(bmp->pixels[1], pFrame_out->data[2], y_size / 4); // V bmp->pitches[0] = pFrame_out->linesize[0];bmp->pitches[2] = pFrame_out->linesize[1];bmp->pitches[1] = pFrame_out->linesize[2];SDL_UnlockYUVOverlay(bmp);rect.x = 0;rect.y = 0;rect.w = pFrame_out->width;rect.h = pFrame_out->height;SDL_DisplayYUVOverlay(bmp, &rect);// Delay 40msSDL_Delay(40);frame_cnt++;}av_frame_unref(pFrame_out);}}av_frame_unref(pFrame);}av_free_packet(&packet);}fclose(fp_yuv);end:avfilter_graph_free(&filter_graph);if (pCodecCtx != NULL){avcodec_close(pCodecCtx);}avformat_close_input(&pFormatCtx);if (ret < 0 && ret != AVERROR_EOF){char buf[1024];av_strerror(ret, buf, sizeof(buf));printf("Error occurred: %s.\n", buf);return -1;}system("pause");return 0;
}

本程序可以直接在 Visual Studio 2015 上运行。

程序运行后,可以看到解码的 YUV420 画面,已经在左上角打上了 my_loog.png 水印。

程序输出:

在这里插入图片描述

工程文件下载

GitHub:UestcXiye / Simplest FFmpeg AVfilter Example

CSDN:Simplest FFmpeg AVfilter Example.zip

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/453421.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

BridgeTower:融合视觉和文本信息的多层语义信息,主打复杂视觉-语言任务

BridgeTower 核心思想子问题1&#xff1a;双塔架构的局限性子问题2&#xff1a;不同层次的语义信息未被充分利用子问题3&#xff1a;模型扩展性和泛化能力 核心思想 论文&#xff1a;https://arxiv.org/pdf/2206.08657.pdf 代码&#xff1a;https://github.com/microsoft/Bri…

背景样式de七七八八

一&#xff0c;简介 背景属性可以设置背景颜色、背景图片、背景平铺、背景图片位置、背景图像固定等。 1.1背景颜色&#xff08;background-color&#xff09; background-color&#xff1a;transparent/color&#xff1b; 默认值为transparent&#xff08;透明的&#xff…

LeetCode18. 四数之和

18. 四数之和 给你一个由 n 个整数组成的数组 nums &#xff0c;和一个目标值 target 。请你找出并返回满足下述全部条件且不重复的四元组 [nums[a], nums[b], nums[c], nums[d]] &#xff08;若两个四元组元素一一对应&#xff0c;则认为两个四元组重复&#xff09;&#xff…

SpringCloud-微服务概述、SpringCloud入门概述、服务提供与消费

1.学习前言 1.1 学习前提 熟练使用SpringBoot 微服务快速开发框架了解过Dubbo Zookeeper 分布式基础电脑配置内存不低于8G 1.2 文章大纲 Spring Cloud 五大组件 服务注册与发现——Netflix Eureka负载均衡&#xff1a; ​ 客户端负载均衡——Netflix Ribbon ​ 服务端负载…

5.0 HDFS 集群服务建立教程

HDFS 集群是建立在 Hadoop 集群之上的&#xff0c;由于 HDFS 是 Hadoop 最主要的守护进程&#xff0c;所以 HDFS 集群的配置过程是 Hadoop 集群配置过程的代表。 使用 Docker 可以更加方便地、高效地构建出一个集群环境。 每台计算机中的配置 Hadoop 如何配置集群、不同的计…

vscode 括号 python函数括号补全

解决方法 在setting.json中添加 “python.analysis.completeFunctionParens”: true 打开设置&#xff1b; 点击图中按钮打开setting.json文件 添加 “python.analysis.completeFunctionParens”: true

大数据Doris(六十三):基于Doris的有道精品课数据中台建设实践

文章目录 基于Doris的有道精品课数据中台建设实践 一、背景

如何在 Microsoft Azure 上部署和管理 Elastic Stack

作者&#xff1a;来自 Elastic Osman Ishaq Elastic 用户可以从 Azure 门户中查找、部署和管理 Elasticsearch。 此集成提供了简化的入门体验&#xff0c;所有这些都使用你已知的 Azure 门户和工具&#xff0c;因此你可以轻松部署 Elastic&#xff0c;而无需注册外部服务或配置…

LeetCode 133:克隆图(图的深度优先遍历DFS和广度优先遍历BFS)

回顾 图的Node数据结构 图的数据结构&#xff0c;以下两种都可以&#xff0c;dfs和bfs的板子是不变的。 class Node {public int val;public List<Node> neighbors;public Node() {val 0;neighbors new ArrayList<Node>();}public Node(int _val) {val _val;…

非常好看的CSS加载中特效,引用css文件既可用

非常好看的CSS加载中特效 demo效果源码&#xff1a; <!DOCTYPE html5> <head><link rel"stylesheet" type"text/css" href"demo.css"/><link rel"stylesheet" type"text/css" href"loaders.css&…

【CSS + ElementUI】更改 el-carousel 指示器样式且隐藏左右箭头

需求 前三条数据以走马灯形式展现&#xff0c;指示器 hover 时可以切换到对应内容 实现 <template><div v-loading"latestLoading"><div class"upload-first" v-show"latestThreeList.length > 0"><el-carousel ind…

CSS-IN-JS

CSS-IN-JS 为什么会有CSS-IN-JS CSS-IN-JS是web项目中将CSS代码捆绑在JavaScript代码中的解决方案。 这种方案旨在解决CSS的局限性&#xff0c;例如缺乏动态功能&#xff0c;作用域和可移植性。 CSS-IN-JS介绍 1&#xff1a;CSS-IN-JS方案的优点&#xff1a; 让css代码拥…