gpt4 book ai didi

c++ - FFMPEG 设置网络摄像头编码器 C++

转载 作者:行者123 更新时间:2023-11-28 06:01:10 25 4
gpt4 key购买 nike

我正在尝试使用 Windows 中的 FFMPEG C API 捕获网络摄像头流。我可以使用以下命令行选项做我想做的事:

ffmpeg -f dshow -vcodec mjpeg -s 1280x720 -framerate 30 -i video=HX-A1:audio="Microphone (HX-A1)" outputFile.mpg

我从 transcoding.c 示例开始,并让它用于录制虚拟网络摄像头,如屏幕捕获录像机。但是,我需要为我的真实网络摄像头设置编码器选项,因为它默认为 160x120 原始视频,我更喜欢更高的分辨率。我正在尝试以下设置相机编码器选项,但它似乎没有做任何事情。

AVDictionary *opt = NULL;
av_dict_set(&opt, "vcodec", "mjpeg", 0);
av_dict_set(&opt, "s", "1280x720", 0);
av_dict_set(&opt, "framerate", "30", 0);
if ((ret = avformat_open_input(&ifmt_ctx, filename, inputFormat, &opt)) < 0) {
av_log(NULL, AV_LOG_ERROR, "Cannot open input file\n");
return ret;
}

是否有另一种方法来设置输入选项来告诉相机使用什么编解码器,就像我在命令行示例中所做的那样?

最佳答案

解决了,我必须先初始化我的 AVFormatContext 然后打开一个 MJPEG 解码器并在打开它之前设置 AVFormatContext 的视频解码器和编解码器 ID。

AVDictionary* dictionary = NULL;
av_dict_set(&dictionary, "video_size", "1280x720", NULL);
av_dict_set(&dictionary, "framerate", "30", NULL);

ifmt_ctx = avformat_alloc_context();
ifmt_ctx->video_codec_id = AV_CODEC_ID_MJPEG;
av_format_set_video_codec(ifmt_ctx, opened_mjpeg_codec);

avformat_open_input(&ifmt_ctx, filename, inputFormat, &dictionary);

关于c++ - FFMPEG 设置网络摄像头编码器 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33266560/

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