Skip to content

Instantly share code, notes, and snippets.

@mindon
Created March 27, 2026 02:04
Show Gist options
  • Select an option

  • Save mindon/6dcc0dc7da5e04a070c6fd3955f8b3b6 to your computer and use it in GitHub Desktop.

Select an option

Save mindon/6dcc0dc7da5e04a070c6fd3955f8b3b6 to your computer and use it in GitHub Desktop.
AppleScript to shot a video with Photo Booth
-- 录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