今回は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