Create a Movie From a Sequence of Images Using QuickTime and AppleScript
I was doing some troubleshooting on Animated Mandelbrot and ran across this neat AppleScript. Given a sequence of images it will create a MOV file using QuickTime.
1 2 3 4 |
tell application "QuickTime Player" activate open image sequence "/Users/jon/Desktop/debug/1.jpg" frames per second 24 end tell |