Video to Photos with an automator acton

I have some videos and I want to make stills from them. However, I do not want to spend hours taking stills manually. Is there an automator process to do this? Maybe take a still every 10 seconds.

The only other thing I could find was this application


But that is a bit of money for me.
http://www.xilisoft.com/video-snapshot-mac.html
Any other ideas?
Thanks

Macbook, Mac OS X (10.5.4)

Posted on Aug 9, 2008 5:17 PM

Reply
4 replies

Aug 9, 2008 6:03 PM in response to Asiago

I don't know what you are using for playback but I don't know any video player that has a built in command to take screen captures. therefore the only way would be to pay video in full screen and take screen captures using built in OS X screen capture command. You can make the following workflow

1. run apple script

<pre style="
font-family: Monaco, 'Courier New', Courier, monospace;
font-size: 10px;
margin: 0px;
padding: 5px;
border: 1px solid #000000;
width: 720px;
color: #000000;
background-color: #ADD8E6;
overflow: auto;"
title="this text can be pasted into the Script Editor">
on run {input, parameters}
delay 10
tell application "System Events" to keystroke "#" using command down


end run</pre>

2. loop action. set it to loop for a preset time = duration of the movie.


The built in screen capture dumps everything on the desktop by default. that's probably not the best place to store lots of images. You can change the directory where screen captures are deposited using [Onyx|http://www.apple.com/downloads/macosx/system diskutilities/onyx.html].

Aug 10, 2008 7:26 AM in response to Asiago

then you can change the apple script action to

<pre style="
font-family: Monaco, 'Courier New', Courier, monospace;
font-size: 10px;
margin: 0px;
padding: 5px;
border: 1px solid #000000;
width: 720px;
color: #000000;
background-color: #ADD8E6;
overflow: auto;"
title="this text can be pasted into the Script Editor">
on run {input, parameters}
delay 10
tell application "VLC"
activate
tell application "System Events" to keystroke "s" using {command down, option down}

end tell
end run</pre>

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Video to Photos with an automator acton

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.