Recordin video clips using MacBook

captain.joco

Registered
Hello

I have a MacBook with integrated camera. And I gotta say that the Photo Booth is great for taking pictures, but I was wondering if there is any kind of application with which I could use my inbuilt camera to record short video clips ( with or without sound ).

Thanks in advance!
 
select it as the input source to use it in iMovie. The image will be mirrored, though.

picture1lc7.png
 
I use quicktime Pro - its the best for recording video in my mind since you can fine-tune all the codecs etc.

EDIT: A solution that can record stills is iStopMotion as well - I love that prog
 
sight speed works good for short email videos. it does it all for you, sound and video. it even sends it through the email. good luck
 
One more option : AppleScript. With it you don't need the quicktime pro for recording if you have only the non-pro.

Record video
Code:
tell application "QuickTime Player"
activate
new movie recording
end tell

And other handy stuff while we are at the topic of QuickTime and AppleScript:

Audio recording
Code:
tell application "QuickTime Player"
activate
new audio recording
end tell

Movie plays in fullscreen
Code:
on run
tell application "QuickTime Player"
activate
present movie 1
end tell
end run

So save (each) as an application, then run the application.
 
Back
Top