Join Nostr
2024-09-07 15:47:22 UTC

TOV on Nostr: Using FFmpeg to create a video using a single image for a specific duration in Linux ...

Using FFmpeg to create a video using a single image for a specific duration in Linux is simple.

ffmpeg -loop 1 -i image.png -c:v libx264 -t 30 -pix_fmt yuv420p out.mp4

The -t 30 makes it 30 seconds long.

#Linux #FFmpeg #image #video