This is an old revision of the document!


How to download picasaweb album's photos without picasa ?

First, you have to fetch the picasaweb album RSS link (located in the right column). For example:

http://picasaweb.google.com/data/feed/base/user/mesher7909/albumid/5482956614732347265?alt=rss&kind=photo&hl=fr

Then this little command line will download in your current directory all the full size photos of this album:

URL="http://picasaweb.google.com/data/feed/base/user/mesher7909/albumid/5482956614732347265?alt=rss&kind=photo&hl=fr"
curl -s "$URL" \
   | xmlstarlet fo \
   | grep "<enclosure" \
   | sed 's/.*url="\(.*JPG\)".*/\1/gi' \
   | sed 's/\(\/[a-z_\.0-9-]*\)$/\/d\1/gi' \
   | wget -nc -i -

Needed packages:

sudo apt-get install curl xmlstarlet

Discussion

anonymousanonymous, 2013/01/15 23:31

Thank you!! For downloading original (large) images, replace sed regex with 's/.*url="\(.*\)\/\(.*JPG\)".*/\1\/d\/\2/gi'

Enter your comment
 
 
 

Recent changes RSS feed Valid XHTML 1.0 Valid CSS Driven by DokuWiki