People at the tower of Pisa taken out of their intended context



Posted by Kristian Golding on March 14, 2021
People at the tower of Pisa taken out of their intended context
Posted by Kristian Golding on November 29, 2020
Posted by Kristian Golding on July 26, 2020
As seen from the Everglades to the west of Miami
Posted by Kristian Golding on February 9, 2020
I set up a Raspberry Pi photo viewer at work to display photos from members of the photo club. Members were instructed to put their photos on a Google Drive location (accessible only within the company VPN) and then the viewer would sync down the photos at a predetermined schedule. To get access to Google Drive, I used rclone. To display I used ‘feh’, which was also used to put text indicating the name of the photo.
curl https://rclone.org/install.sh | sudo bash
rclone config
// choose google, team drive. Follow the prompts
// To sync:
rclone sync -v motofoto:SoftwareKitchenPhotos /home/pi/Pictures/SoftwareKitchenPhotos/
// remember: that’s rclone sync -v <source> <destination>! I have wiped out my local directory by syncing with an empty google drive folder!
// Setting up cronjob:
crontab -e
30 2 * * * /usr/bin/rclone sync motofoto:SoftwareKitchenPhotos /home/pi/Pictures/SoftwareKitchenPhotos/
// this runs the job at 2:30 every morning
Two scripts are set to launch on boot. One plays music, the other starts feh.
The directory structure was such that from the root folder to be synced, photographers created a folder with their name and put their photos within it. I requested that the photos have creative names. Given this format, I could put a watermark on each photo in the bottom left by doing the following:
feh –recursive –slideshow-delay 10 –info “echo %F | rev | cut -d’/’ -f1-2 | rev | sed -r ‘s/[.].*//’ | sed -r ‘s/\// – /'”
I want to get the author name (lowest-level directory) and photo name (name of jpg file), strip off the jpg extension, and replace the directory separate “/” with a spaced hyphen ” – “. To do this, I:
TODO: Starting photo viewer and music player on boot.