↧
Creating a Video from JPEGs and vice versa
Creating a video from JPEGs I wrote a Bash script for this purpose: It first renames the images from something like IMG_9999.JPG, IMG_10000, … to IMG_00001.JPG, IMG_00002.JPG. Then it reduces the image...
View ArticleUsing ffmpeg to cut and crop a movie file
Here are the commands to issue in order to crop and/or cut a movie file with ffmpeg: # cutting: ffmpeg -i [input_file] -qscale 0 -ss [start_seconds] -t [duration_seconds] [output_file] # so for...
View Article