Flickr Uploading
On a whim I gave up with my personal web gallery implementation and switched to Flickr. Now, uploading is fun. I could use the web-based upload form, but as I can't DnD from Nautilus into a text field that is dull, and whilst copy/paste works that is also dull. I can email images but I can't send lots at once (they have a 12M limit per email), and have to remove the signature and GPG signing for every message. Also dull. I'll get a billion people shouting "use F-Spot", which I tried, but it doesn't want to import some of my photos, and it doesn't work with my photo storage either, so that isn't an option for now.
Thus, I'm considering writing a small Nautilus extension in Python, so that in the context menu of every image there is a Upload to Flickr option. I'd prefer not to re-invent the wheel so does anyone else has written a simple GNOMEy uploading tool for Flickr? Thanks!
never tested, but there is gnickr, http://gnickr.sourceforge.net/ , and there was also another tool (in python maybe) but I can't find it anymore.
It easily adds photos to groups, rotates images, and supports batch operation for taggging and describing.
Overall, I've been very pleased with it.
To write ANOTHER Flickr upload tool just exacerbates the problem.
The only reliable ones appear to be F-Spot and my favourite, jUploadr.
It's a very quick and dirty (gtk 1.2) way of uploading via a nautilus script, but works fine.
#!/bin/sh
TAGS=/tmp/upload
EMAIL=youruploadid@photos.flickr.com
while read line
do
echo Uploading "$line"
mutt -s `basename $line` -a "$line" $EMAIL < $TAGS
done
</pre>
/tmp/upload should look like tags: blah, blaaaa
Use find and pipe it in.