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?
Asked
Active
Viewed 8,408 times
1 Answers
7
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

rogerdpack
- 62,887
- 36
- 269
- 388
-
thank you :) btw, how to converting back result of bitmaps into video? – Myrda Sahyuti Apr 28 '14 at 23:25
-
https://trac.ffmpeg.org/wiki/Create%20a%20video%20slideshow%20from%20images may help – rogerdpack Apr 29 '14 at 15:39
-
how much will it fast ?? – Ahmad Arslan Apr 20 '15 at 06:42