DoubleLi

qq: 517712484 wx: ldbgliet

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
  4737 随笔 :: 2 文章 :: 542 评论 :: 1615万 阅读
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

int img_savejpeg(AVFrame *pFrame, char *out_filename) {
//视频流保存为jpeg

int width = pFrame->width;
int height = pFrame->height;
AVCodecContext *pCodeCtx = NULL;

AVFormatContext *pFormatCtx = avformat_alloc_context();
// 设置输出文件格式
pFormatCtx->oformat = av_guess_format(“mjpeg”, NULL, NULL);

// 创建并初始化输出AVIOContext
if (avio_open(&pFormatCtx->pb, out_filename, AVIO_FLAG_READ_WRITE) < 0) {
printf(“Couldn’t open output file.”);
return -1;
}

// 构建一个新stream
AVStream *pAVStream = avformat_new_stream(pFormatCtx, 0);
if (pAVStream == NULL) {
return -1;
}

AVCodecParameters *parameters = pAVStream->codecpar;
parameters->codec_id = pFormatCtx->oformat->video_codec;
parameters->codec_type = AVMEDIA_TYPE_VIDEO;
parameters->format = AV_PIX_FMT_YUVJ420P;
parameters->width = pFrame->width;
parameters->height = pFrame->height;

AVCodec *pCodec = avcodec_find_encoder(pAVStream->codecpar->codec_id);

if (!pCodec) {
printf(“Could not find encoder\n”);
return -1;
}

pCodeCtx = avcodec_alloc_context3(pCodec);
if (!pCodeCtx) {
fprintf(stderr, “Could not allocate video codec context\n”);
exit(1);
}

if ((avcodec_parameters_to_context(pCodeCtx, pAVStream->codecpar)) < 0) {
fprintf(stderr, “Failed to copy %s codec parameters to decoder context\n”,
av_get_media_type_string(AVMEDIA_TYPE_VIDEO));
return -1;
}
AVRational Rat;
Rat.num =1;
Rat.den =25;
pCodeCtx->time_base = Rat;

if (avcodec_open2(pCodeCtx, pCodec, NULL) < 0) {
printf(“Could not open codec.”);
return -1;
}

int ret = avformat_write_header(pFormatCtx, NULL);
if (ret < 0) {
printf(“write_header fail\n”);
return -1;
}

int y_size = width * height;

//Encode
// 给AVPacket分配足够大的空间
AVPacket pkt;
av_new_packet(&pkt, y_size * 3);

// 编码数据
ret = avcodec_send_frame(pCodeCtx, pFrame);
if (ret < 0) {
printf(“Could not avcodec_send_frame.”);
return -1;
}

// 得到编码后数据
ret = avcodec_receive_packet(pCodeCtx, &pkt);
if (ret < 0) {
printf(“Could not avcodec_receive_packet”);
return -1;
}

ret = av_write_frame(pFormatCtx, &pkt);

if (ret < 0) {
printf(“Could not av_write_frame”);
return -1;
}

av_packet_unref(&pkt);

//Write Trailer
av_write_trailer(pFormatCtx);

avcodec_close(pCodeCtx);
avio_close(pFormatCtx->pb);
avformat_free_context(pFormatCtx);

return 0;

}

posted on   DoubleLi  阅读(330)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
历史上的今天:
2022-08-22 Windows10/11 三步安装wsl2 Ubuntu20.04(任意盘)
2022-08-22 win10离线安装WSL2 Ubuntu20.04系统
2016-08-22 insmod module_param 模块参数
2013-08-22 C++的四种cast操作符的区别--类型转换
2013-08-22 __stdcall,__cdecl,_cdecl,_stdcall,。__fastcall,_fastcall 区别简介
2013-08-22 cdecl、pascal、stdcall、fastcall
2012-08-22 VC中动态添加控件
点击右上角即可分享
微信分享提示