1.最初に元々編集した8分程のムービーをフレームごとにpngで書き出す作業。
AppleScriptエディタに以下をコピー(上記サイトより)して実行
set savefile to choose file name with prompt "保存するファイル名を指定してください(拡張子不要、自動的に連番が付加)"
tell application "QuickTime Player"
export document 1 to savefile as image sequence using most recent settings
end tell
私の場合、しばらくしてタイムアウトのエラーメッセージが出た。この後の作業でも出たが無視してQTでの作業が終わるまでほっておく。
なんと7200余りの静止画ができる。時間もかかる。
それを速度を指定して動画を作る。以下をAppleScriptエディタにコピーして実行。
set afile to choose file
set fps to 120
tell application "QuickTime Player"
open image sequence afile frames per second fps
end tell
3.QT7の動画をAppleScriptエディタで保存する。(QT7を途中で終了すると保存ダイアログが開くが保存できないままになる。 QT強制終了しかなくなるので注意。2の時間がムダになる)
set savefile to choose file name with prompt "保存するファイル名を指定してください"
tell application "QuickTime Player"
export document 1 to savefile as QuickTime movie
end tell