Home > AppleScript > [ AppleScript ] QuickTime Player で開いている全てのムービーの再生ヘッド位置を同期する

[ AppleScript ] QuickTime Player で開いている全てのムービーの再生ヘッド位置を同期する

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

関連する記事

Comments: 0

Comment Form
Remember personal info

Trackback+Pingback: 0

TrackBack URL for this entry
http://bowz.info/1233/trackback
Listed below are links to weblogs that reference
[ AppleScript ] QuickTime Player で開いている全てのムービーの再生ヘッド位置を同期する from Bowz::Notebook

Home > AppleScript > [ AppleScript ] QuickTime Player で開いている全てのムービーの再生ヘッド位置を同期する

タグクラウド

Return to page top