Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ffmpeg PNG to mp4 - Black screen

Tags:

png

ffmpeg

mp4

mpeg

I can create a mpg video using this line

ffmpeg -f image2 -i 100%03d0.png movie.mpg

But If I try creating an mp4 video I get a video with a black screen.

ffmpeg -f image2 -i 100%03d0.png movie.mp4

My directory with figures looks like: 1000010.png,1000020.png,...1001260.png

like image 379
ilciavo Avatar asked Dec 26 '22 04:12

ilciavo


1 Answers

Adding -pix_fmt yuv420p should solve the problem:

ffmpeg -i input_%03d.png -pix_fmt yuv420p movie.mp4

From FFmpeg Wiki:

"By default when using libx264, and depending on your input, ffmpeg will attempt to avoid color subsampling. Technically this is preferred, but unfortunately almost all video players, excluding FFmpeg based players, and many online video services only support the YUV color space with 4:2:0 chroma subsampling.

Using the options -pix_fmt yuv420p or -vf format=yuv420p will maximize compatibility."

like image 119
user3473830 Avatar answered Dec 28 '22 08:12

user3473830