Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直无法将视频转换为 8 位 BMP 帧。如何使用 FFmpeg 进行转换?或者有建议软件来做到这一点?
如果你只想要一帧:
ffmpeg -i <input> -vframes 1 -pix_fmt bgr8 -y output.bmp
如果你想要很多输出帧:
ffmpeg -i <input> -pix_fmt bgr8 yo%03d.bmp