Default encoder for format image2 (codec png) is probably disabled. Please choose an encoder manuall
Posted AI浩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Default encoder for format image2 (codec png) is probably disabled. Please choose an encoder manuall相关的知识,希望对你有一定的参考价值。
使用ffmpeg将mp4文件转为图片的时候出现了错误,执行命令如下:
ffmpeg -y -
loglevel error -i aa.mp4 -r 25 -f image2 aa/aa/%08d.png
报错信息:
Automatic encoder selection failed for output stream #0:0. Default encoder for format image2 (codec png) is probably disabled. Please choose an encoder manually.
Error selecting an encoder for stream 0:0
解决方法将png格式的图片改为jpg格式的图片。
将命令修改为:
ffmpeg -y -loglevel error -i aa.mp4 -r 25 -f image2 aa/aa/%08d.jpg
以上是关于Default encoder for format image2 (codec png) is probably disabled. Please choose an encoder manuall的主要内容,如果未能解决你的问题,请参考以下文章
100天精通Python(数据分析篇)——第59天:Pandas读写json文件(read_jsonto_json)
C#中string转二进制一定要先编码吗?byte[] byteArr = Encoding.Default.GetBytes(str);