문제

I have been having trouble converting a video to 8 bit BMP frames. How to convert it using FFmpeg? or have suggestion software to do that?

도움이 되었습니까?

해결책

If you just want one frame:

ffmpeg -i <input> -vframes 1 -pix_fmt bgr8 -y output.bmp

If you want lots of output frames:

ffmpeg -i <input> -pix_fmt bgr8 yo%03d.bmp

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top