资源简介

相应博客地址:http://blog.csdn.net/weixinhum/article/details/45872093 如有疑问请到博客留言,此外如有错误会在博客中更新

资源截图

代码片段和文件信息

#include 

extern “C“//包含C文件头
{
#include “libavformat/avformat.h“
};
#define DATASIZE 1024*1024

AVStream *add_vidio_stream(AVFormatContext *oc enum AVCodecID codec_id)//用以初始化一个用于输出的AVFormatContext结构体
{
AVStream *st;
AVCodec *codec;

st = avformat_new_stream(oc NULL);
if (!st)
{
printf(“Could not alloc stream\n“);
exit(1);
}
codec = avcodec_find_encoder(codec_id);//查找mjpeg解码器
if (!codec)
{
printf(“codec not found\n“);
exit(1);
}
avcodec_get_context_defaults3(st->codec codec);//申请AVStream->codec(AVCodecContext对象)空间并设置默认值(由avcodec_get_context_defaults3()设置

st->codec->bit_rate = 400000;//设置采样参数,即比特率  
st->codec->width = 1080;//设置视频宽高,这里跟图片的宽高保存一致即可
st->codec->height = 1800;
st->codec->time_base.den = 10;//设置帧率
st->codec->time_base.num = 1;

st->codec->pix_fmt = PIX_FMT_YUV420P;//设置像素格式  
st->codec->codec_tag = 0;
if (oc->oformat->flags & AVFMT_GLOBALHEADER)//一些格式需要视频流数据头分开
st->codec->flags |= CODEC_FLAG_GLOBAL_HEADER;
return st;
}

void main()
{
AVFormatContext *ofmt_ctx = NULL;//其包含码流参数较多,是一个贯穿始终的数据结构,很多函数都要用到它作为参数
const char *out_filename = “out.mkv“;//输出文件路径,在这里也可以将mkv改成别的ffmpeg支持的格式,如mp4,flv,avi之类的
int ret;//返回标志

av_register_all();//初始化解码器和复用器
avformat_alloc_output_context2(&ofmt_ctx NULL NULL out_filename);//初始化一个用于输出的AVFormatContext结构体,视频帧率和宽高在此函数里面设置
if (!ofmt_ctx)
{
printf(“Could not create output context\n“);
return;
}

AVStream *out_stream = add_vidio_stream(ofmt_ctx AV_CODEC_ID_MJPEG);//创造输出视频流
av_dump_format(ofmt_ctx 0 out_filename 1);//该函数会打印出视频流的信息,如果看着不开心可以不要

if (!(ofmt_ctx->oformat->flags & AVFMT_NOFILE))//打开输出视频文件
{
ret = avio_open(&ofmt_ctx->pb out_filename AVIO_FLAG_WRITE);
if (ret < 0) {
printf(“Could not open output file ‘%s‘“ out_filename);
return;
}
}

if (avformat_write_header(ofmt_ctx NULL) < 0)//写文件头(Write file header)
{
printf(“Error occurred when opening output file\n“);
return;
}

int frame_index = 0;//放入视频的图像计数
unsigned char *mydata = new unsigned char[DATASIZE];
AVPacket pkt;
av_init_packet(&pkt);
pkt.flags |= AV_PKT_FLAG_KEY;
pkt.stream_index = out_stream->index;//获取视频信息,为压入帧图像做准备
while (frame_index<100)//将图像压入视频中
{
FILE *file;//打开一张jpeg图像并读取其数据,在这里图像最大为1M如果超过1M,则需要修改1024*1024这里
fopen_s(&file “1.jpg“ “rb“);
pkt.size = fread(mydata 1 DATASIZE file);
pkt.data = mydata;
fclose(file);
if (av_interleaved_write_frame(ofmt_ctx &pkt) < 0) //写入图像到视频
{
printf(“Error muxing packet\n“);
break;
}
printf(“Write %8d frames to output file\n“ frame_index);//打印出当前压入的帧数
frame_index++;
}
av_free_packet(&pkt);//释放掉帧数据包对象
av_write_trailer(ofmt_ctx);//写文件尾(Write file trailer)
delete[]mydata;//释放数据对象
if (ofmt_ctx && !(ofmt_ctx->oformat->flags & AVFMT_NOFILE))
avio_close(ofmt_ctx->pb);//关闭视频文件
avformat_free_context(ofmt_ctx);//释放输出视频相关数据结构
return;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-05-20 16:33  JpegToVideo\
     目录           0  2015-05-20 16:33  JpegToVideo\Debug\
     目录           0  2015-05-20 16:33  JpegToVideo\JpegToVideo\
     文件         979  2015-05-20 15:56  JpegToVideo\JpegToVideo.sln
     文件       16896  2015-05-20 16:32  JpegToVideo\JpegToVideo.v12.suo
     文件      654124  2014-09-13 19:10  JpegToVideo\JpegToVideo\1.jpg
     文件    18936320  2014-05-06 10:08  JpegToVideo\JpegToVideo\avcodec-55.dll
     文件     1340928  2014-05-06 10:08  JpegToVideo\JpegToVideo\avdevice-55.dll
     文件     2034688  2014-05-06 10:08  JpegToVideo\JpegToVideo\avfilter-4.dll
     文件     5342720  2014-05-06 10:08  JpegToVideo\JpegToVideo\avformat-55.dll
     文件      418304  2014-05-06 10:08  JpegToVideo\JpegToVideo\avutil-52.dll
     目录           0  2015-05-20 16:33  JpegToVideo\JpegToVideo\Debug\
     目录           0  2015-05-20 16:00  JpegToVideo\JpegToVideo\include\
     文件        5721  2012-05-23 20:03  JpegToVideo\JpegToVideo\include\inttypes.h
     目录           0  2015-05-20 16:00  JpegToVideo\JpegToVideo\include\libavcodec\
     文件      175612  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavcodec\avcodec.h
     文件        3111  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavcodec\avfft.h
     文件        2392  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavcodec\dxva2.h
     文件       10654  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavcodec\old_codec_ids.h
     文件        4007  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavcodec\vaapi.h
     文件        4094  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavcodec\vda.h
     文件        6200  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavcodec\vdpau.h
     文件        5593  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavcodec\version.h
     文件        6062  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavcodec\xvmc.h
     目录           0  2015-05-20 16:00  JpegToVideo\JpegToVideo\include\libavdevice\
     文件       16642  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavdevice\avdevice.h
     文件        1861  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavdevice\version.h
     目录           0  2015-05-20 16:00  JpegToVideo\JpegToVideo\include\libavfilter\
     文件        3321  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavfilter\asrc_abuffer.h
     文件        3784  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavfilter\avcodec.h
     文件       56887  2014-05-06 10:08  JpegToVideo\JpegToVideo\include\libavfilter\avfilter.h
............此处省略92个文件信息

评论

共有 条评论