13795 shaares
193 liens privés
193 liens privés
16 résultats
taggé
camera
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)'
photobooth like