14159 shaares
204 liens privés
204 liens privés
4 résultats
taggé
cli
1) Create a Applescript by AppleScript Editor and save it (e.g. QTRecord.scpt):
tell application "QuickTime Player"
activate
start (new movie recording)
end tell
2) Open Terminal and run the script in command line:
osascript QTRecord.scpt
Or the whole thing as an one-liner:
osascript -e 'tell application "QuickTime Player" to activate' -e 'tell application "QuickTime Player" to start (new movie recording)'