G'day
Возможно, это не самый быстрый способ - но я вижу, что вы все еще ждете ответа - так что вот что поможет вам начать.Выберите все ваши MOV-файлы в Finder и запустите его в редакторе скриптов.
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
Самый простой способ получить путь к шаблону - выбрать его в Finder и запустить:
tell application "Finder"
set theFile to selection as string
end tell
Это поместит путь в окно результатов - просто скопируйте его в первую строку приведенного выше сценария.
Надеюсь, это поможет
m.