gpt4 book ai didi

c - FFmpeg - H264 编码器找不到有效设备并且无法配置编码器

转载 作者:行者123 更新时间:2023-12-04 22:45:24 24 4
gpt4 key购买 nike

我正在尝试使用 H264 编码器进行编码,但是当我这样做时,我收到以下错误:

[h264_v4l2m2m @ 0x55682d2416c0] Could not find a valid device
[h264_v4l2m2m @ 0x55682d2416c0] can't configure encoder
我确保在配置 FFmpeg 时启用了编码器。当我运行命令 ffmpeg -codecs我看到 H264 编解码器被列为编码器:
DEV.LS h264    H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
(decoders: h264 h264_v4l2m2m )
(encoders: libx264 libx264rgb h264_v4l2m2m h264_vaapi )
源视频的视频编解码器是 H264,所以我不确定为什么在同时有解码器和编码器的情况下无法使用 H264 进行编码。即使我运行 avcodec_find_encoder_by_name找到 libx264编码器,它不能。
这是失败的代码块:
codec = avcodec_find_encoder(AV_CODEC_ID_H264);
if (!codec) {
printf("[ERROR] Failed to find video output codec\n");
return -1;
}
outputCodecContext = avcodec_alloc_context3(codec);
if (!outputCodecContext) {
printf("[ERROR] Failed to allocate memory for video output codec context\n");
return -1;
}
av_opt_set(outputCodecContext->priv_data, "preset", "slow", 0);
outputCodecContext->bit_rate = inputCodecContext->bit_rate;
outputCodecContext->width = inputCodecContext->width;
outputCodecContext->height = inputCodecContext->height;
outputCodecContext->time_base = (AVRational){1, 60};
outputCodecContext->framerate = (AVRational){60, 1};
outputCodecContext->pix_fmt = inputCodecContext->pix_fmt;
outputCodecContext->extradata = inputCodecContext->extradata;
outputCodecContext->extradata_size = inputCodecContext->extradata_size;

// This if statement fails as a result of the encoder error
if (avcodec_open2(outputCodecContext, codec, NULL) < 0) {
printf("[ERROR] Failed to open video output codec\n");
return -1;
}
return 0;
当我使用 ffmpeg 使用 H264 进行编码时命令,我没有收到任何这些错误。任何帮助表示赞赏。

最佳答案

事实证明,我一直忘记调用 makemake install (我在 Ubuntu 上)使用命令后 ./configure --enable-shared --enable-libx264 --enable-gpl .这消除了我收到的错误,我的代码能够找到 libx264编码器。

关于c - FFmpeg - H264 编码器找不到有效设备并且无法配置编码器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62541110/

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