iphone encode problem with ffmpeg

Posted by samantha on Stack Overflow See other posts from Stack Overflow or by samantha
Published on 2010-05-24T09:05:17Z Indexed on 2010/05/24 9:11 UTC
Read the original article Hit count: 265

Filed under:
|
|

Hi, I need to encode a video from image. I use ffmpeg and compiling rigth. My problem is that when i try to opne video with quicktime on iphone, this give me a message "this movie format is not supported". I create a file mp4 with this parameter on context:

context->time_base.num = 1; context->time_base.den = 15; context->codec_type = CODEC_TYPE_VIDEO; context->codec_id = CODEC_ID_H264; context->bit_rate = 1000000;

context->width = width; context->height = height;

context->keyint_min = 10; context->i_quant_factor = 0.71; context->bit_rate_tolerance = 20000; context->rc_max_rate = 100000; context->rc_buffer_size = 8835000; context->qcompress = 0.6; context->qmin = 10; context->qmax = 30; context->max_qdiff = 4; context->gop_size = 30;

context->time_base.num = 1;

context->time_base.den = 30; context->sample_aspect_ratio = av_d2q(1, 255); context->profile = 30;

context->pix_fmt = PIX_FMT_YUV420P;

context->flags |= CODEC_FLAG_LOOP_FILTER;

where is my mistake?? thanks

© Stack Overflow or respective owner

Related posts about iphone

Related posts about encoding