Created
March 27, 2026 02:04
-
-
Save mindon/6dcc0dc7da5e04a070c6fd3955f8b3b6 to your computer and use it in GitHub Desktop.
AppleScript to shot a video with Photo Booth
This file contains hidden or 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
| -- 录10秒视频 | |
| tell application "Photo Booth" to activate | |
| delay 1 | |
| tell application "System Events" to tell process "Photo Booth" | |
| click radio button 3 of radio group 1 of group 1 of window "Photo Booth" | |
| end tell | |
| tell application "System Events" | |
| set frontmost of process "Photo Booth" to true | |
| keystroke return using {option down} -- option + enter | |
| end tell | |
| delay 10 | |
| tell application "System Events" | |
| key code 53 | |
| end tell | |
| tell application "Photo Booth" to quit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment