本文转自:http://blog.csdn.net/cai6811376/article/details/51774467

EasyDarwin一直坚持开源精神,所以我们着手把EasyDarwin中使用的非开源工具替换为开源项目。

我们将EasyCMS中使用的图片保存替换为FFmpeg。(这里说明Windows版)

  • 首先到ffmpeg官网下载编译好的ffmpeg文件

下载页面:https://ffmpeg.zeranoe.com/builds/

Shared包含.dll文件,Dev包含.h和.lib文件

将.h/.lib/.dll引入EasyDarwin工程

.h放入EasyDarwin/Include/FFmpeg下

.lib放入EasyDarwin/Lib/FFmpeg/x86下

.dll放入EasyDarwin/Bin/FFmpeg/x86下

  • 编写DecoderHelper类

DecoderHelper.h

#ifndef _DECODER_HELPER_
#define _DECODER_HELPER_ #define __STDC_CONSTANT_MACROS extern "C"
{
#include <inttypes.h>
#include "libavcodec/avcodec.h"
#include "libavformat/avformat.h"
#include "libavutil/avutil.h"
#include "libavutil/imgutils.h"
#include "libswresample/swresample.h"
#include "libswscale/swscale.h"
} class DecoderHelper
{
public:
DecoderHelper();
~DecoderHelper(); int SetVideoDecoderParam(int width, int height, int codec, int format);
int DecodeVideo(char *inBuff, int inBuffSize, void *yuvBuff, int width, int height); private:
void releaseVideoDecoder(); private:
AVFormatContext* _formatContext;
AVCodecContext* _videoCodecContext;
AVFrame* _videoFrame420; struct SwsContext* _swsContext;
uint8_t* _buffYUV420;
AVPacket _videoAVPacket; uint8_t* _buffYUV;
AVFrame* _avframeYUV; AVFrame* _avframeSWS; int _codec;
int _width;
int _height;
int _outputFormat; }; #endif //_DECODER_HELPER_

DecoderHelper.cpp

#include "DecoderHelper.h"

DecoderHelper::DecoderHelper()
: _formatContext(NULL),
_videoCodecContext(NULL),
_videoFrame420(NULL),
_buffYUV420(NULL),
_buffYUV(NULL),
_avframeYUV(NULL),
_avframeSWS(NULL),
_swsContext(NULL),
_codec(0),
_width(0),
_height(0),
_outputFormat(0)
{
//Register all the codec
avcodec_register_all();
//Register all types of decoding
av_register_all();
} DecoderHelper::~DecoderHelper()
{
releaseVideoDecoder();
} int DecoderHelper::SetVideoDecoderParam(int width, int height, int codec, int format)
{
if (_width != width || _height != height || _codec != codec)
{
releaseVideoDecoder();
} if (NULL != _videoCodecContext)
{
return -1;
} AVCodec *avcodec = avcodec_find_decoder((AVCodecID)codec);
if (NULL == avcodec)
{
return -1;
} _videoCodecContext = avcodec_alloc_context3(avcodec);
_videoCodecContext->pix_fmt = AV_PIX_FMT_YUV420P;
_videoCodecContext->width = width;
_videoCodecContext->height = height; int ret = avcodec_open2(_videoCodecContext, avcodec, NULL);
if (ret < 0)
{
goto $fail;
} int numBytes = avpicture_get_size(AV_PIX_FMT_YUV420P, width, height);
_buffYUV420 = (uint8_t *)av_malloc(numBytes * sizeof(uint8_t));
_videoFrame420 = av_frame_alloc();
if (avpicture_fill((AVPicture *)_videoFrame420, _buffYUV420, AV_PIX_FMT_YUV420P,
_width, _height) < 0)
{ } av_init_packet(&_videoAVPacket);
_width = width;
_height = height;
_codec = codec;
_outputFormat = format; return 0; $fail:
{
return -1;
} } int DecoderHelper::DecodeVideo(char *inBuff, int inBuffSize, void *yuvBuff, int width, int height)
{
if (NULL == inBuff) return -1;
if (1 > inBuffSize) return -1;
if (NULL == yuvBuff) return -1;
if (NULL == _videoCodecContext) return -2; _videoAVPacket.size = inBuffSize;
_videoAVPacket.data = (uint8_t*)inBuff; int frameFinished = 0;
int nDecode = avcodec_decode_video2(_videoCodecContext, _videoFrame420, &frameFinished, &_videoAVPacket);//(uint8_t*)pInBuffer, inputSize);
if (nDecode < 0) return -3;
if (!frameFinished) return -4; if (width != _width || height != _height)
{
if (NULL != _avframeYUV)
{
av_frame_free(&_avframeYUV);
_avframeYUV = NULL;
} if (NULL != _swsContext)
{
sws_freeContext(_swsContext);
_swsContext = NULL;
} _width = width;
_height = height;
} if (NULL == _avframeYUV)
{
int numBytes = avpicture_get_size((AVPixelFormat)_outputFormat, width, height);
_avframeYUV = av_frame_alloc();
}
if (NULL == _avframeYUV) return -5; if (avpicture_fill((AVPicture *)_avframeYUV, (uint8_t*)yuvBuff, (AVPixelFormat)_outputFormat,
width, height) < 0)
{
return -1;
} if (NULL == _swsContext)
{
_swsContext = sws_getCachedContext(_swsContext, _videoCodecContext->width, _videoCodecContext->height, (AVPixelFormat)AV_PIX_FMT_YUV420P,
width, height, (AVPixelFormat)_outputFormat, SWS_BICUBIC, NULL, NULL, NULL);
}
if (NULL == _swsContext) return -1; int ret = sws_scale(_swsContext, _videoFrame420->data, _videoFrame420->linesize, 0, _videoCodecContext->height,
_avframeYUV->data, _avframeYUV->linesize); return 0;
} void DecoderHelper::releaseVideoDecoder()
{
if (NULL != _videoFrame420)
{
av_frame_free(&_videoFrame420);
_videoFrame420 = NULL;
}
if (NULL != _buffYUV420)
{
av_free(_buffYUV420);
_buffYUV420 = NULL;
}
if (NULL != _avframeSWS)
{
av_frame_free(&_avframeSWS);
_avframeSWS = NULL;
}
if (NULL != _avframeYUV)
{
av_frame_free(&_avframeYUV);
_avframeYUV = NULL;
}
if (NULL != _buffYUV)
{
av_free(_buffYUV);
_buffYUV = NULL;
} if (NULL != _swsContext)
{
sws_freeContext(_swsContext);
_swsContext = NULL;
} if (NULL != _videoCodecContext)
{
avcodec_close(_videoCodecContext);
av_free(_videoCodecContext);
_videoCodecContext = NULL;
}
}
  • 使用
DecoderHelper decoderHelper;
decoderHelper.SetVideoDecoderParam();
decoderHelper.DecodeVideo();

获取更多信息

邮件:support@easydarwin.org

WEB:www.EasyDarwin.org

QQ交流群:288214068

Copyright © EasyDarwin.org 2012-2015

EasyDarwin接入ffmpeg实现264转图片快照功能的更多相关文章

  1. PDF文档工具:pdfFactory快照功能详解

    pdfFactory的快照功能,是通过一种类似截图的方式,将文档中的内容,如标题.图片.段落.文字等进行剪切的功能.剪切后的内容会转化为文本框的形式,我们可以对其进行加边框.旋转等编辑处理,但不能对其 ...

  2. iOS开发UI篇—UIScrollView控件实现图片缩放功能

    iOS开发UI篇—UIScrollView控件实现图片缩放功能 一.缩放 1.简单说明: 有些时候,我们可能要对某些内容进行手势缩放,如下图所示 UIScrollView不仅能滚动显示大量内容,还能对 ...

  3. C# 图片盖章功能实现,支持拖拽-旋转-放缩-保存

    实现图片盖章功能,在图片上点击,增加“图章”小图片,可以拖拽“图章”到任意位置,也可以点击图章右下角园框,令图片跟着鼠标旋转和放缩. 操作方法:1.点击增加“图章”2.选中移动图标3.点中右下角放缩旋 ...

  4. 杂谈SharpDx中的WIC组件——我们需要WIC的图片编码功能么?

    在前文 SharpDX之Direct2D教程II——加载位图文件和保存位图文件 中,发现在VB2010中不能很好的运用SharpDx中的WIC组件进行图片的编码工作.可能是我的设置问题,也可能是Sha ...

  5. jQuery.YesShow - 图片轮播插件(带图片放大功能)

    jQuery.YesShow - 图片轮播插件(带图片放大功能) 使用简单,原文件只要这样就可以了:<div id="yes">         <ul> ...

  6. 纯JS实现图片验证码功能并兼容IE6-8

    最近要搞一个图片验证码功能,但是又不想自己写后台代码.于是自己准备搞一个纯前端的验证码功能,于是网上搜索了一下,找到一个插件gVerify.js,简单好用,实现完美.不过后面接到说要兼容IE8,想想也 ...

  7. VirtualBox的快照功能

    VirtualBox是非常好用的一个虚拟机软件,无论是性能还是易用性不比商用的Vmware差.VirtualBox最初是Sun公司的产品,由于Sun被Oracle收购,现在也归Oracle了.除了虚拟 ...

  8. 图片放大功能如何做?jquery实现

    花了很长时间撸了个网站,观点,其中需要一个图片放大功能,网上找了半天发现都没有中意的,最后无奈之下自己写了一个,演示地址,演示图片: 自我感觉效果还不错,现在分享开来给大家看看,哪里不好还请多多指教, ...

  9. Android Camera开发系列(下)——自定义Camera实现拍照查看图片等功能

    Android Camera开发系列(下)--自定义Camera实现拍照查看图片等功能 Android Camera开发系列(上)--Camera的基本调用与实现拍照功能以及获取拍照图片加载大图片 上 ...

随机推荐

  1. Pushlets的初始化陷阱

    Pushlets是在类名为Pushlet的servlet的init方法中进行初始化的.一般我们会在web.xml配置pushlet的时候,指定其servlet在Web应用启动时就进行初始化,即便这样, ...

  2. llinux 定时器 转载自 http://blog.chinaunix.net/uid-11848011-id-96374.html

    这篇文章主要记录我在试图解决如何尽可能精确地在某个特定的时间间隔执行某项具体任务时的思路历程,并在后期对相关的API进行的归纳和总结,以备参考. 问题引出 很多时候,我们会有类似“每隔多长时间执行某项 ...

  3. wpf LookUpEdit PopupContentTemplate

    <dxg:LookUpEdit Name="searchLookUpEdit" HorizontalAlignment="Stretch" PopupHe ...

  4. yii执行流程

    yii执行流程 原文:http://www.cnblogs.com/bluecobra/archive/2011/11/30/2269207.html 一 目录文件 |-framework     框 ...

  5. 在 .Net Core xUnit test 项目中使用配置文件

    在对项目做集成测试的时候,经常会需要用到一些参数比如用户名密码等,这些参数不宜放在测试代码中.本文介绍一种方法:使用配置文件. 添加配置文件 在集成测试项目目录下新建文件:Configuration. ...

  6. linux环境设置export

    一. shell显示与设置环境变量 1.export //echo $PATH 2.export | grep ROS 3.export ROS_IP=192.168.0.5(添加环境变量ROS_IP ...

  7. Java使用logback记录日志时分级别保存文件

    说明:一般情况下logback可以指定类使用什么样的级别显示输出日志,并且同一类可以指定不能级别,然后对应级别进行输出日志. 第一种配置: <?xml version="1.0&quo ...

  8. 为什么BT网络中迅雷的速度会这么快,比其它BT软件快

    先看迅雷加速通道的几个概论,参考:http://www.cnblogs.com/EasonJim/p/6608544.html 我个人理解,在传统BT软件中,基于P2P的网络是不具备以上条件去加速的, ...

  9. jsp、freemarker、velocity 的区别

    在java领域,表现层技术主要有三种:jsp.freemarker.velocity. 一.jsp是大家最熟悉的技术:优点:1.功能强大,可以写java代码2.支持jsp标签(jsp tag)3.支持 ...

  10. iphone坐标系统

    1,基本概念 CGPoint{x,y};空间中的位置,通过x和y坐标定义 CGSize{width, height}; 大小,通过宽度和高度定义 CGRect{origin, size};位置和大小, ...