Skip to content

Instantly share code, notes, and snippets.

@kellec
Created June 15, 2013 06:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kellec/5787156 to your computer and use it in GitHub Desktop.
Save kellec/5787156 to your computer and use it in GitHub Desktop.
Applescript to capture the current frame in VLC (using the snapshot function in the app) and advance to the next frame. It then asks you if you want to capture this frame too and so in into recursive goodness. Images are saved as per your settings in VLC.
on captureAndStep()
tell application "VLC" to activate
tell application "System Events"
keystroke "s" using {command down, option down}
keystroke "e"
end tell
tell application "VLC" to display dialog "Capture next frame?" buttons {"Yes", "No, I'm done"} default button 1 cancel button 2 with title "Continue?"
if result = {button returned:"Yes"} then
captureAndStep()
end if
end captureAndStep
captureAndStep()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment