Convert Image files within current Directory to .MPG video in Linux with FFMPEG


Convert Image/Picture files within current Directory to .MPG video in Linux with FFMPEG:

$ ffmpeg -r 10 -b 1800 -i %03d.jpg output.mp4



*NOTES:
- Where output is the outcome file.
- The $ sign at the start of the command is to signify the terminal's prompt, no need to type this in.
- For this to work the files must start with 001.jpg and count from there in order, be careful not to miss a sequence number for example 001.jpg 002.jpg 003.jpg 005.jpg missing 004.jpg wont count the rest after, 005.jpg and if there are more after wont be added.


0 comments:

Post a Comment