天行健,君子以自强不息!
发布时间:2014-04-28 17:52:11
产品亮点一、实时直播流的关键帧识别并展示选择频道的实时流并播放后,会在窗口中自动展示关键帧图片;配对选择关键帧的截图即确定了素材的入点,出点;编辑平台图如下所示:二、广告自动识别与监测方案1. 制作样本库对源做检测,人式标识广告的入点,出点,并提取出对应的音频,制成广告样本库;2. 检测对源和广.........【阅读全文】
发布时间:2014-04-23 22:56:07
一、编译1. 编译前的修改1). apiexample.c LINE 19#include "avcodec.h"改成:#include "libavcodec/avcodec.h"2). apiexample.c LINE 145len = avcodec_decode_audio(c, (short *)outbuf, &out_size,改成:len = avcodec_decode_audio2(c, (short *)outbuf, &out_size,2. 编译生成# gcc apiexample.c -g .........【阅读全文】
发布时间:2014-04-19 22:17:39
四、主函数代码001 int main(int argc, char **argv)002 {003 const char *filename;004 AVOutputFormat *fmt;005 AVFormatContext *oc;006 AVStream *audio_st, *video_st;007 double audio_pts, video_pts;008 int i;&nb.........【阅读全文】
发布时间:2014-04-19 22:12:52
简介这个例子展示了如何使用FFmpeg SDK输出一个libavformat库所支持格式的媒体文件。一、重要的数据结构及函数列表I. 数据结构:(1) AVFormatContext(2) AVOutputFormat(3) AVInputFormat(4) AVCodecContext(5) AVCodec(6) AVFrame(7) AVPacket(8) AVPicture(9) AVStreamII. 初始化函数:1. av_register_al.........【阅读全文】
发布时间:2014-04-19 21:55:10
一、FFmpeg源代码下载与编译# wget http://www.ffmpeg.org/releases/ffmpeg-0.5.13.tar.bz2# tar -jxvf ffmpeg-0.5.13.tar.bz2# vim ffmpeg_configure.sh./configure \--prefix=/YOUR_INSTLL_DIRECTORY \--enable-gpl --enable-nonfree --enable-version3 \--enable-swscale --enable-avfilter \--enable-pth.........【阅读全文】