luni, 29 aprilie 2019

Apple Script - Timelapse Screen Capture

https://bit.ly/2QioIht GlobalDelight secret sale page.
This video is about the Apple Script I've put together which simply takes screenshots of your screen every second and saves them into a folder with a particular naming and file format type. *Note: You are more than welcome to have and use and change the script as you like. If you have any better ideas get in touch! The script code for Apple Script: ------------------------------------------------------------------ ########################## # Dimitrios Zacharopoulos (DigiPROT Ltd) # Screenshot Timecapture Script ########################## set save_location to ¬ (choose folder with prompt "Choose where to save screenshots") delay (7) -- delay 7 seconds repeat with shotcount from 1 to 1000 do shell script "screencapture " & ¬ quoted form of POSIX path of save_location ¬ & "digiPROT-screenshot" & (shotcount as string) & ".PNG" delay (1) -- delay 1 seconds end repeat ------------------------------------------------------------------------ Items used to create this demo: - Quicktime Screen Recording - Apple Script - Final Cut Pro X for editing