作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在这里遵循示例代码:http://cekirdek.pardus.org.tr/~ismail/ffmpeg-docs/output-example_8c-source.html
我的代码如下:
fmt = av_guess_format(NULL, filename, NULL);
if (!fmt) {
LOGE(1,"Could not deduce output format from file extension: using MPEG.\n");
fmt = av_guess_format("mp4", NULL, NULL);
}
if (!fmt) {
LOGE(1, "Could not find suitable output format\n");
exit(1);
}
最佳答案
av_guess_format 返回 NULL,因为我没有正确配置 FFMPEG 以允许任何格式。
我重新配置了 FFMPEG 以允许 mp4 和其他,现在它可以工作了
关于null - FFmpeg av_guess_format 返回 NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8526738/
我使用了 http://cekirdek.pardus.org.tr/~ismail/ffmpeg-docs/output-example_8c-source.html 中的示例: out_ctx =
我在这里遵循示例代码:http://cekirdek.pardus.org.tr/~ismail/ffmpeg-docs/output-example_8c-source.html 我的代码如下: f
执行此代码: av_log_set_callback(_log_callback); av_register_all(); avcodec_register_all(); LOG(avcodec_co
我是一名优秀的程序员,十分优秀!