Skip to content

Instantly share code, notes, and snippets.

@evanwill
Created October 6, 2016 08:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evanwill/712df4e021f89b96f954895f7ab4c384 to your computer and use it in GitHub Desktop.
Save evanwill/712df4e021f89b96f954895f7ab4c384 to your computer and use it in GitHub Desktop.
get stuff off flickr

Need to download metadata from flickr?

You can bulk download stuff from flickr very easily now (which is a great feature), by going to Camera Roll, selecting things, and clicking download. Or you can bulk download your sets/albums now as well. This is handy, but it doesnt export any metadata you added to the photos in the system.

Unfortunately, I found none of the apps are very stable. The most recent and least broken apps are:

Linux has one good option, but set up takes forever if you have lots of photos,

Exiftool

You want exiftool, nothing else consitantly works to look at metadata.

  • Download the complete version, http://www.sno.phy.queensu.ca/~phil/exiftool/
  • extract the files
  • in the extracted directory, use ./exiftool picture.jpg to look at exif data of the pic without installing.
  • use ./exiftool -json=picture.jpg.json picture.jpg to write json metadata to the embedded exif data of the image (you get the json or xmp file from other applications).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment