วิธีเริ่มการบันทึกวิดีโอ QuickTime บน MacBook ที่บรรทัดคำสั่ง
วิธีเริ่มการบันทึกวิดีโอ QuickTime บน MacBook ที่บรรทัดคำสั่ง
คำตอบ:
1) สร้าง Applescript โดย AppleScript Editor และบันทึก (เช่น QTRecord.scpt):
tell application "QuickTime Player"
activate
start (new movie recording)
end tell
2) เปิด Terminal และเรียกใช้สคริปต์ในบรรทัดคำสั่ง:
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”.