gpt4 book ai didi

c++ - 无法使用 FFmpeg 编码单帧 h264 (.mp4) 视频。不存在视频流

转载 作者:行者123 更新时间:2023-12-03 21:38:57 25 4
gpt4 key购买 nike

我已经使用该命令通过 ffmpeg 命令行工具实现了这一点。该文件夹只有一张图像。

ffmpeg -r 24 -i image%03d.bmp -c:v libx264 -pix_fmt yuv420p oneframex.mp4



我想对 C++ 做同样的事情。如果我编码三帧或更多帧的视频,视频编码正确,但编码一帧或两帧视频的结果永远不会有视频流,正如 ffprobe 和一些媒体播放器所报告的那样。

与 ffprobe 相比,我的视频(具有三帧或更多帧的视频)和由命令工具生成的视频显示的信息几乎相同。只有比特率和编码器版本不同。

我尝试将 force_key_frames 添加到 1,尝试了许多编码选项并且没有成功。

应用程序输出为我提供了以下信息:

[libx264 @ 20d1b840] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX

[libx264 @ 20d1b840] profile High, level 4.0

[libx264 @ 20d1b840] 264 - core 142 r2431 ac76440 - H.264/MPEG-4 AVC codec - Copyleft 2003-2014 - http://www.videolan.org/x264.html - options: cabac=0 ref=1 deblock=1:0:0 analyse=0x3:0x113 me=dia subme=8 psy=1 psy_rd=1.00:0.00 mixed_ref=0 me_range=16 chroma_me=0 trellis=0 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=1 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=1 keyint_min=1 scenecut=0 intra_refresh=0 rc=crf mbtree=0 crf=10.0 qcomp=0.60 qpmin=0 qpmax=25 qpstep=4 ip_ratio=1.40 aq=1:1.00



这些是我的主要参数:
pCodecCtx->codec_id = AV_CODEC_ID_H264;
pCodecCtx->pix_fmt= AV_PIX_FMT_YUV420P;
pCodecCtx->gop_size = 1;
pCodecCtx->bit_rate = 400000;
pCodecCtx->me_range = 16;
pCodecCtx->max_qdiff = 4;
pCodecCtx->qcompress = 0.6;
pCodecCtx->qmin = 0;
pCodecCtx->qmax = 25;
pCodecCtx->time_base.den = 24;
pCodecCtx->time_base.num = 1;

AVDictionary *param = 0;
av_dict_set(&param, "preset", "slow", 0);
av_dict_set(&param, "profile", "high", 0);
av_dict_set(&param, "crf", "10", 0); //this gave me quality
av_dict_set(&param, "force_key_frames", "1", 0);

在我刚刚添加的编码中
ppicture->pts = pCodecCtx->frame_number

避免非严格单调的 PTS 消息。并尝试了 this question中的方法万一它有事可做。

我确信我必须缺少一些重要参数才能创建这么小的视频。我会接受任何建议。

最佳答案

将单帧发送到编码器后,必须将空帧发送到刷新编码器。

avcodec_send_frame(enc, nullptr);
avcodec_receive_packet(enc, pkt);

关于c++ - 无法使用 FFmpeg 编码单帧 h264 (.mp4) 视频。不存在视频流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30041827/

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