0

.MOV ファイル (h.264) を Final Cut Pro にインポートするには、.MOV と同じファイル名の対応する .THM ファイルが必要です。AppleScript または Automator でこれを行うことは可能ですか? これが私がやりたいことです:

  1. HD に既に存在する「TEMPLATE.THM」ファイルのコピーを作成する
  2. .MOV ファイル名を使用して「TEMPLATE.THM」ファイルの名前を変更します。
  3. .MOV ファイルのフォルダーに対してこれを行い、同じファイル名のすべての .MOV ファイルに対して .THM ファイルを作成します。
4

1 に答える 1

1

誕生日

これは最速の方法ではないかもしれませんが、まだ回答を待っているようです。ここから始めましょう。ファインダーですべての MOV ファイルを選択し、スクリプト エディターでこれを実行します。

set theTemplate to "Macintosh HD:Users:[user name]:[folder:location]:TEMPLATE.THM"

tell application "Finder"
  set theFiles to selection
  repeat with thisFile in theFiles
    set thisName to name of thisFile
    set theFolder to container of thisFile
    set newFile to duplicate theTemplate to theFolder

    set text item delimiters of AppleScript to "."
    set thisName to text item 1 of thisName
    set text item delimiters of AppleScript to ""

    set newName to (thisName & ".THM")
    set name of newFile to newName
  end repeat
end tell

テンプレートへのパスを取得する最も簡単な方法は、ファインダーで選択してこれを実行することです。

tell application "Finder"
    set theFile to selection as string
end tell

これにより、結果ウィンドウにパスが表示されます — 上記のスクリプトの最初の行にコピーするだけです。

それが役立つことを願っています

メートル。

于 2011-11-24T22:45:51.963 に答える