Câu trả lời:
1) Tạo một Applescript bởi AppleScript Editor và lưu nó (ví dụ: QTRecord.scpt):
tell application "QuickTime Player"
activate
start (new movie recording)
end tell
2) Mở Terminal và chạy tập lệnh trong dòng lệnh:
osascript QTRecord.scpt
Hoặc toàn bộ là một lớp lót:
osascript -e 'tell application "QuickTime Player" to activate' -e 'tell application "QuickTime Player" to start (new movie recording)'
Theo trang web này, nó có thể được thực hiện bằng 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
Vì vậy, nó tương tác với thời gian nhanh chóng. Không có lệnh trực tiếp với QuickTime.
Expected end of line, etc. but found “true”.