screenshot batch processing script or application
July 15, 2008 8:46 AM Subscribe
Looking for a recommendation for a free / open source script or application to batch capture/process screen shots of web sites, ideally from a list of urls.
(python, ruby, perl, php, processing, etc. all acceptable options. OS ambivalent. Command line ok, too.)
(python, ruby, perl, php, processing, etc. all acceptable options. OS ambivalent. Command line ok, too.)
Response by poster: I came across webshot before I posted the question, but thought it only did greyscale in the free version. Seems that's only the command line version. I'm checking out the GUI + Free version right now. Thanks!
posted by sunlightfoundation at 9:06 AM on July 15, 2008
posted by sunlightfoundation at 9:06 AM on July 15, 2008
this is pretty easy to do on a Linux machine with ImageMagick installed. If I had one here at work I'd write you a script, but basically:
#!/bin/bash
URLFILE=somefile.txt
BROWSER=/usr/bin/firefox
# 'import' is part of the ImageMagick package
SCREENGRAB=import
# so is 'convert'
PROCESS=convert
URLS=`cat $URLFILE`
for url in $URLS
do
$BROWSER $url
SCREENGRAB <screengrab options>
PROCESS <processing options>
done
posted by xbonesgt at 9:08 AM on July 15, 2008 [1 favorite]
#!/bin/bash
URLFILE=somefile.txt
BROWSER=/usr/bin/firefox
# 'import' is part of the ImageMagick package
SCREENGRAB=import
# so is 'convert'
PROCESS=convert
URLS=`cat $URLFILE`
for url in $URLS
do
$BROWSER $url
SCREENGRAB <screengrab options>
PROCESS <processing options>
done
posted by xbonesgt at 9:08 AM on July 15, 2008 [1 favorite]
In Mac OS X, type
Mac OS X is UNIX, and the Terminal runs the
posted by Blazecock Pileon at 10:47 AM on July 15, 2008
man screencapture
for the options for the screencapture
command. Mac OS X is UNIX, and the Terminal runs the
bash
shell, so you have access to that scripting environment, as well as perl
and python
, of course. So you can integrate screencapture
with existing scripts.posted by Blazecock Pileon at 10:47 AM on July 15, 2008
Response by poster: Thanks Blazecock Pileon, I am on a mac and I didn't consider the option to use screencapture. I'll give that a shot.
posted by sunlightfoundation at 9:18 PM on July 15, 2008
posted by sunlightfoundation at 9:18 PM on July 15, 2008
« Older What are the best options for cable TV + Internet... | Which to buy? Original Adidas GSG9 or GSG9 v2? Newer »
This thread is closed to new comments.
It's free, and can do batches of dumps, from a text file.
posted by ijsbrand at 8:53 AM on July 15, 2008