QuickTime Player で開いている全てのムービーの再生ヘッド位置を同期する AppleScript のサンプルです。
-- Synchronized Play Point
tell application "QuickTime Player"
try
if not (exists movie 1) then error
tell movie 1
set THISTIME to current time
end tell
repeat with i from 1 to count of movies
set current time of movie i to THISTIME
end repeat
on error error_quit
end try
end tell
基準は、一番手前に表示されているムービーの再生ヘッド位置です。いろんなコーデックでエンコードした後の画質確認等に使うと便利かも。
動作確認:Mac OS 10.4.5 + QuickTime Player 7.0.4