ffmpeg yuv420保存jpg文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ffmpeg yuv420保存jpg文件相关的知识,希望对你有一定的参考价值。

int yuv420_to_jpg(void *data,int w,int h,char *file)
{
	av_register_all();
	AVFormatContext *pFormatCtx = avformat_alloc_context();
	AVOutputFormat *fmt = av_guess_format("mjpeg", NULL, NULL);
	pFormatCtx->oformat = fmt;
	if (avio_open(&pFormatCtx->pb,file, AVIO_FLAG_READ_WRITE) < 0){
		printf("Couldn‘t open output file.");
		return -1;
	}
	AVStream *video_st = avformat_new_stream(pFormatCtx, 0);
	if (video_st==NULL){
		return -1;
	}
	AVCodecContext *pCodecCtx = video_st->codec;
	pCodecCtx->codec_id = fmt->video_codec;
	pCodecCtx->codec_type = AVMEDIA_TYPE_VIDEO;
	pCodecCtx->pix_fmt = PIX_FMT_YUVJ420P;
	pCodecCtx->width = w;  
	pCodecCtx->height = h;
	pCodecCtx->time_base.num = 1;
	pCodecCtx->time_base.den = 25;
	AVCodec *pCodec = avcodec_find_encoder(pCodecCtx->codec_id);
	if (!pCodec){
		return -1;
	}
	if (avcodec_open2(pCodecCtx, pCodec,NULL) < 0){
		return -1;
	}
	AVFrame *picture = av_frame_alloc();
	int size = avpicture_get_size(pCodecCtx->pix_fmt, pCodecCtx->width, pCodecCtx->height);
	uint8_t *picture_buf = (uint8_t *)av_malloc(size);
	if (!picture_buf){
		return -1;
	}
	avpicture_fill((AVPicture *)picture, picture_buf, pCodecCtx->pix_fmt, pCodecCtx->width, pCodecCtx->height);
	avformat_write_header(pFormatCtx,NULL);
	int y_size = pCodecCtx->width * pCodecCtx->height;
	AVPacket pkt;
	av_new_packet(&pkt,y_size*3);
	memcpy(picture_buf,data,y_size*3/2);
	picture->data[0] = picture_buf;
	picture->data[1] = picture_buf+ y_size;
	picture->data[2] = picture_buf+ y_size*5/4;
	int got_picture = 0;
	int ret = avcodec_encode_video2(pCodecCtx, &pkt,picture, &got_picture);
	if(ret < 0){
		printf("Encode Error.\n");
		return -1;
	}
	if (got_picture==1){
		pkt.stream_index = video_st->index;
		ret = av_write_frame(pFormatCtx, &pkt);
	}
	av_free_packet(&pkt);
	av_write_trailer(pFormatCtx);
	if (video_st){
		avcodec_close(video_st->codec);
		av_free(picture);
		av_free(picture_buf);
	}
	avio_close(pFormatCtx->pb);
	avformat_free_context(pFormatCtx);
	return 1;
}

 

以上是关于ffmpeg yuv420保存jpg文件的主要内容,如果未能解决你的问题,请参考以下文章

2023-02-25:请用go语言调用ffmpeg,解码mp4文件并保存为YUV420SP格式文件,YUV420P不要转换成YUV420SP。

2023-02-24:请用go语言调用ffmpeg,解码mp4文件并保存为YUV420SP格式文件,采用YUV420P转YUV420SP的方式。

2023-02-23:请用go语言调用ffmpeg,解码mp4文件并保存为YUV420P格式文件。

ffmpeg记录

视频提取图片/图片合成视频ffmpeg(二十)

从 YUV420P 到 RGB 的 FFMPEG Api 转换产生奇怪的输出