FFmpeg By Example is a documentation website to showcase all the unique and different ways to use FFmpeg.
Got a cool idea to share with the community? Send your contribution here!

Generate a solid color H.264 video with the color video source filter (color Hex code)

ffmpeg -f lavfi -i "color=c=0x4d1a7f" -s 1280x720 -r 30 -c:v libx264 -crf 31 -t 5 solid.mp4

All Examples