My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads

Eye-Fi memory cards send pictures from digital cameras to your computer (or any machine on your network) using wifi. I use it to send pictures from my camera to my NAS. Read more about Eye-Fi at http://eye.fi/

This is a slight rework of a post of Jeff Tchang at Return Boolean True:

finetuned for use with linux. All credits go to Jeff Tchang.

There is a similar project at

Starting this server creates a listener on port 59278. I use the BaseHTTPServer class included with Python. I look for specific POST/GET request URLs and execute functions based on those URLs.

Structure of this package :

	.
	|-- etc
	|   |-- eyefiserver.conf
	|   `-- init.d
	|       `-- eyefiserver
	|-- usr
	|   `-- local
	|       `-- bin
	|           `-- eyefiserver.py
	`-- var
	    `-- log
	        `-- eyefiserver.log
	

If you're familiar with linux, that basically sums it up :-)

  • unzip the tarball (its under downloads)
  • Put the stuff on the right place,
  • edit the eyefiserver.conf (your eyefi key has to go there)
  • optionally add stuff to your start-stop sequence. on debian/ubuntu, use update-rc.d:

sudo update-rc.d eyefiserver defaults 98 02

et voila.

Powered by Google Project Hosting