作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的部分命令如下所示:
ffmpeg -hide_banner -f avfoundation -framerate 30 -video_size 3840x2160 -c:v <some codec> -pix_fmt <some pixel format> -i "0" ...
我尝试使用 avlib 复制这部分命令的代码如下所示:
AVDictionary* options = nullptr;
av_dict_set(&options, "framerate", "30", 0);
av_dict_set(&options, "video_size", "3840x2160", 0);
av_dict_set(&options, "pixel_format", <some pixel format>, 0);
av_dict_set(&options, "vcodec", <some codec>, 0);
int err = avformat_open_input(&ctx->formatContext, id.c_str(), iformat, &options);
除“vcodec”外,所有选项均被接受。
最佳答案
vcodec
是 ffmpeg
专用的参数二进制,它不是输入格式选项。
您必须使用 avcodec_find_decoder()
或 avcodec_find_decoder_by_name()
选择编解码器。
查看解复用/解码示例,该示例太大,无法在此处重现:
https://ffmpeg.org/doxygen/trunk/demuxing_decoding_8c-example.html
关于ffmpeg - 如何在 avformat_open_input() 函数中设置编解码器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70035372/
我是一名优秀的程序员,十分优秀!