답변:
1) AppleScript 편집기로 Applescript를 생성하고 저장합니다 (예 : QTRecord.scpt).
tell application "QuickTime Player"
activate
start (new movie recording)
end tell
2) 터미널을 열고 명령 행에서 스크립트를 실행하십시오.
osascript QTRecord.scpt
또는 하나의 라이너로 전체 :
osascript -e 'tell application "QuickTime Player" to activate' -e 'tell application "QuickTime Player" to start (new movie recording)'
이 사이트 에 따르면 Applescript를 사용하여 수행 할 수 있습니다
tell application "QuickTime Player"
set nr to (new movie recording)
set nr to start recording true
delay 10
set nr to stop recording true
end tell
따라서 Quick-time과 상호 작용합니다. QuickTime에는 직접적인 명령이 없습니다.
Expected end of line, etc. but found “true”.