Existing users, log in.  New users, create a free account.  Lost password?

Mac OS X  |  Internet  |  Chat / IM / SMS  |  isightcapture

isightcapture

isightcapture - 1.1

CLI capture utility for iSight camera

All Time: Not rated (0.0)
This Version: Not rated (0.0)
Current Version: 1.1
Release Date: 2006-04-23
License: Freeware
Downloads (this version): 5,499
Downloads (all versions): 7,367

Information Related to Version:

Broken Link? Newer Version? Tell us!

Product Description:

isightcapture is a simple CLI utility to grab and save still images from iSight or other similar cameras recognized by QuickTime. It is useful for implementing simple webcams and does not require the user to be logged in or to start a GUI application. Other features include: scaling of images, various output formats etc.

Operating System Requirements:

This product is designed to run on the following operating systems:

  • Mac OS X 10.4 Intel
  • Mac OS X 10.4 PPC
  • Mac OS X 10.3.9
  • Mac OS X 10.3

Additional Requirements:

  • Mac OS X 10.3 or later
    iSight or similar camera
    Universal Binary

Screenshots:

Download Links:

Your Installed Versions:


 

Feedback Summary:

This Version:
Overall Rating: Not rated (0.0) Features: Not rated (0.0) Support: Not rated (0.0)
Ease of Use: Not rated (0.0) Quality / Stability: Not rated (0.0) Price: Not rated (0.0)
Add Your Feedback

Key to Types of Feedback:

ReviewsReviews   TroubleshootingTroubleshooting   Usage TipsUsage Tips   Developer NotesDeveloper Notes   CommentaryCommentary   Featured ReviewsFeatured Reviews

isightcapture Usage TipGreat as a webcam! My script included here: - Version: 1.1, 9/24/2007 10:50AM PST

fsdlk@uaf.edu
#!/bin/tcsh

# webcam2file.command
# Webcam to file script; for creating a webcam website on a mac.
# September 21, 2007

# Make sure this script is saved with unix line returns and set it executable
# ex: chmod 750 webcam2file.command
# For quick launch in the GUI; In the finder Get Info (command i) and set Open With to Terminal.app
# Then drag the script on to the *bottom* dock.

# Requires: isightcapture and ImageMagick
# ImageMagick is used for date stamping the web image.
# For ImageMagick on the mac; install macports and run the following command to install:
# sudo /opt/local/bin/port install rb-rmagick
# MacPorts: http://trac.macosforge.org/projects/macports/wiki/InstallingMacPorts
# isightcapture: http://www.intergalactic.de/hacks.html

echo "Starting Web Cam"
echo ""

while (1 == 1)

# For more date format options see: http://en.wikipedia.org/wiki/Date_%28Unix%29#Formatting
set date=`date "+%l:%M:%S %p"`

echo "taking photo ${date}"

# Have isight capture the image and save it to the Macintosh website folder.
# Assumes isightcapture is placed in /local/bin; change if not.
/local/bin/isightcapture -w 320 -h 240 ~/Sites/images/cam-raw.jpg

# Comment this line if you don't install ImageMagick or don't want to put a timestamp on the image.
# For more ImageMagick text stamp options see: http://www.imagemagick.org/Usage/annotating/
/opt/local/bin/convert ~/Sites/images/cam-raw.jpg -gravity South -background skyblue -splice 0x18 -draw "text 0,0 '${date}'" ~/Sites/images/cam.jpg

#sleep setting regulates time between photos, currently 1 second + write and date = 5 about seconds
sleep 1

end
exit
Post a commentAlert Admin

isightcapture Troubleshooting ReportHow to use an external cam? - Version: 1.1, 5/12/2007 02:16PM PST

derek39
I have the same issue, where I want to make it use an external (USB) camera. There's a -i [camera-index] option, but 0 and 1 both use the built-in cam, above that gives an error, and I see no provision for viewing a list of the available values to give to -i.
Post a commentAlert Admin

isightcapture ReviewUsed to be very useful - Version: 1.1, 2/7/2007 09:19PM PST

John Chew
I used to use isightcapture all the time on my ibook G4 with FireWire iSight. It no longer works with my MacBook; it seems to be confused between the built-in USB iSight and the external FireWire one. There's no way to tell it which one you want, and since I need it for an event webcam, the built-in (unaimable) camera is not a useful choice. I wrote to the developer about a year ago, but never heard back. It's a shame, because this used to be a nifty utility.
Post a commentAlert Admin

Most Recent Replies: View All 1 Replies