我正在尝试使用iOS中的FFMpeg以h.264格式编码视频。实际上我从iPhone Camera接收样本缓冲区,然后将AVFrame转换为AVFrame,再转换为H.264视频。但是,如果我使用h.264编码:
codec = avcodec_find_encoder(CODEC_ID_MPEG1VIDEO);
然后找到编解码器但是如果我使用:
codec = avcodec_find_encoder(CODEC_ID_H264);
然后编解码器为零意味着找不到编解码器。完整代码如下:
static void encode(AVFrame *picture)
{
AVCodec *codec;
AVCodecContext *c= NULL;
int i, out_size, size, outbuf_size;
uint8_t *outbuf, *picture_buf;
printf("Video encoding\n");
/* find the mpeg1 video encoder */
//avcodec_init() ; // Also tried this but giving warning and not worked
avcodec_register_all();
codec = avcodec_find_encoder(CODEC_ID_H264);
if (!codec) {
fprintf(stderr, "codec not found\n");
exit(1);
}
c= avcodec_alloc_context();
picture= avcodec_alloc_frame();
/* put sample parameters */
c->bit_rate = 400000;
/* resolution must be a multiple of two */
c->width = 352;
c->height = 288;
/* frames per second */
c->time_base= (AVRational){1,25};
c->gop_size = 10; /* emit one intra frame every ten frames */
c->max_b_frames=1;
c->pix_fmt = PIX_FMT_YUV420P;
/* open it */
if (avcodec_open(c, codec) < 0) {
fprintf(stderr, "could not open codec\n");
exit(1);
}
/* alloc image and output buffer */
outbuf_size = 100000;
outbuf = malloc(outbuf_size);
size = c->width * c->height;
picture_buf = malloc((size * 3) / 2); /* size for YUV 420 */
out_size = avcodec_encode_video(c, outbuf, outbuf_size, picture);
NSLog(@"NSdada===%@",[NSData dataWithBytes:(const void *)outbuf length:out_size]);
free(picture_buf);
free(outbuf);
avcodec_close(c);
av_free(c);
av_free(picture);
printf("\n");
}
答案 0 :(得分:0)
您的ffmpeg可能是在没有libx264支持的情况下编译的。所以它真的找不到H.264的编码器,因为ffmpeg afaik中没有其他的H.264编码器。
答案 1 :(得分:0)
首先,ffmpeg和x264是根据LGPL和GPL许可的,因此您需要解决许可证问题才能将该代码包含在iPhone应用程序中。在iOS下,您可能希望使用设备随附的硬件h.264编码器。 AVAsset API用于在iOS应用程序中解码并编码为h.264。