今回はCanon提供の EOS Utility を使用。AppleScript と GUI スクリプティングを組み合わせて、毎三秒シャッターをおろし、イメージはそのままコンピューターにダウンロードという方式。
家に帰って出来上がってきた400+枚のイメージをまずは Apple Aperture にインポート。ホワイトバランスやなんかをいじる。Aperture では一枚のイメージに対して使ったフィルターセッティングをスタンプとして全てのイメージに同時に応用できるのが便利!最後にイメージを JPEG としてエキスポート。
こうして出来上がったイメージは Final Cut Express にインポート。シーケンス設定は YouTube HD を考慮して 720p30。インポートした静止画をタイムライン上にぱぱっと並べてちょっとだけガンマ補正したトラックを一度 Apple iCodec としてエキスポート。それをインポートしなおして、ズームやテキストなどの装飾を追加.ついでに再生時間も10秒に短縮してあげる。これを以下の設定でエキスポート。
tell application “Image Capture” to activate
delay 1.0
repeat while true
try
tell application “System Events”
tell process “Image Capture”
tell window “Canon EOS DIGITAL REBEL XT”
tell tool bar 1
click button “Take Picture”
end tell
end tell
end tell
end tell
exit repeat
end try
end repeat
delay 3.0
tell application “System Events”
tell process “Image Capture”
keystroke “a” using {command down}
end tell
end tell
delay 0.5
tell application “System Events”
tell process “Image Capture”
tell window “Canon EOS DIGITAL REBEL XT”
tell group 1
click button “Download”
end tell
end tell
end tell
end tell
Since iPhone 2.0 + iTunes 7.7 came out, people have been complaining about the new “Backup” feature which takes some sort of dump from the iPhone and stores for later in case the owner has to restore the iPhone. Well, most of us don’t need to backup on the daily basis, right?
I too got in on the iPhone 3G bandwagen earlier, but noticed the hour long process of syncing an iPhone with my iTunes to be EXTREMELY frustrating. That’s when I came across this article. Eeexceeeellent.
I tried and found the hack to be functional. But honestly, who wants to use a Terminal hack every time? So I developed Switch iPhone Backup State application. It’s a simple app. For technical inclined folks, this is a simple AppleScript application bundle. It allows you to turn on/off the Backup feature in iTunes.
*Warning* Please be sure to enable Backup every now and then and take a full backup of your iPhone. I won’t be held responsible if you blow months worth of data you accumulated in your iPhone.