如何在Mac上用Script启动quicktime录制?
1)创建AppleScript文件,输入一下代码并保存。如QTRecord.scpt
tell application "QuickTime Player"
activate
start (new movie recording)
end tell
2)在终端执行
osascript QTRecord.scpt
3)或者也可以一句话搞定以上两步
osascript -e 'tell application "QuickTime Player" to activate' -e 'tell application "QuickTime Player" to start (new movie recording)'
摘自How to start QuickTime recording at command line?
分割线
这几天为了解决录制视频同时记录开始录制的时间戳这个需求,倒腾了不少解决方案,之前也想过用命令行打开QuickTime进行录制,但是忘了还有AppleScript,而且竟然4行就搞定了(捂脸...心痛一下我的时间)。在这里大概记录一下之前试过的方法。