gpt4 book ai didi

ffmpeg的iphone编码问题

转载 作者:行者123 更新时间:2023-12-04 23:31:23 25 4
gpt4 key购买 nike

我需要从图像中编码视频。
我使用 ffmpeg 并正确编译。
我的问题是,当我尝试在 iPhone 上使用 quicktime 来打开视频时,这会给我一条消息“不支持此电影格式”。
我在上下文中使用此参数创建一个文件 mp4:

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;

我的错在哪里??
谢谢

最佳答案

您应该改用 AVFoundation,它可以让您在编码时使用硬件加速。

关于ffmpeg的iphone编码问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2895847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com