How can i make a video from individual image frames programmatically with QuickTime player 10.5?
2
votes
2
answers
89
views
There seems to have been an applescript compatible command "open image sequence" in previous versions, but that seems no longer supported?
This gives me some error related to the incorrect syntax around image sequence:
#!/bin/sh
osascript -e 'tell application "QuickTime Player"' \
-e 'activate' \
-e 'open image sequence file "$1"' \
-e 'set frameRate to 24' \
-e 'set resolution to "1920x1080"' \
-e 'set encodeFormat to "H.264"' \
-e 'save document 1 in file "$2"' \
-e 'end tell'
Asked by Paul Janssens
(213 rep)
Feb 8, 2025, 09:25 AM
Last activity: Feb 8, 2025, 12:47 PM
Last activity: Feb 8, 2025, 12:47 PM