This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Assuming your have installed the following: | |
# | |
# brew install ufraw imagick ffmpeg | |
# apt-get install ufraw imagick ffmpeg | |
# Convert to JPG's | |
for img in *.CR2; do convert -resize 1920 "$img" "$img.jpg"; print "$img"; done | |
# Make a video |