Question #3   Submitted by Answiki on 04/27/2020 at 08:13:20 AM UTC

How to create a video from images on Ubuntu 18.04?

Answer   Submitted by Answiki on 04/27/2020 at 08:16:56 AM UTC

You can create a video from multiple images on Ubuntu with ffmpeg:

Start by installing ffmpeg:

sudo apt install ffmpeg

The following commands create a video from images:

ffmpeg -start_number 9 -framerate 5 -i DSC_%04d.JPG output.mp4

  • -start_number is the number of the first image
  • -framerate is the frame rate of the video (number of images per second)
  • -i (input) is the filename (In the above example, the first image is DSC_0009.JPG) ;
  • output.mp4 is the filename of the video (the output)
2 events in history
Answer by Answiki on 04/27/2020 at 08:16:56 AM

You can create a video from multiple images on Ubuntu with ffmpeg:

Start by installing ffmpeg:

sudo apt install ffmpeg

The following commands create a video from images:

ffmpeg -start_number 9 -framerate 5 -i DSC_%04d.JPG output.mp4

  • -start_number is the number of the first image
  • -framerate is the frame rate of the video (number of images per second)
  • -i (input) is the filename (In the above example, the first image is DSC_0009.JPG) ;
  • output.mp4 is the filename of the video (the output)
Question by Answiki 04/27/2020 at 08:13:20 AM
How to create a video from images on Ubuntu 18.04?
# ID Query URL Count

Icons proudly provided by Friconix.