Aggregates images taken this week, from previous years and presents them on a web page with a simple slideshow.
Deploy this app to Linode with a free $100 credit!
Aggregate images taken this week, from previous years and presents them on a web page with slideshow.
When I migrated my photo collection from google photos to a locally hosted instance of photoprism, I missed the automatically generated slideshow feature of google photos, here it is now.
The meta information of all images are read at startup and cached in memory. When the slideshow is opened, images from this calendar week from previous years are displayed. If no images from the calendar year are found, random images are displayed.
Indexing scales with storage performance
Slideshow change scales with CPU performance
Since the binary is compiled completely statically, there are no dependencies on system libraries like glibc.
Download the latest release for your system from the releases page:
# Assuming you run a x86/x64 system, if not adjust the binary name to download
LATEST_VERSION=$(curl -L -s -H 'Accept: application/json' https://github.com/RouHim/this-week-in-past/releases/latest | \
sed -e 's/.*"tag_name":"\([^"]*\)".*/\1/') && \
curl -L -o this-week-in-past https://github.com/RouHim/this-week-in-past/releases/download/$LATEST_VERSION/this-week-in-past-x86_64-unknown-linux-musl && \
chmod +x this-week-in-past
Create a folder to store the application data:
mkdir data
Start the application with:
RESOURCE_PATHS=/path/to/pictures \
DATA_FOLDER=data \
SLIDESHOW_INTERVAL=60 \
./this-week-in-past
Docker Example:
docker run -p 8080:8080 \
-v /path/to/pictures:/resources \
-e SLIDESHOW_INTERVAL=60 \
-e WEATHER_ENABLED=true \
-e OPEN_WEATHER_MAP_API_KEY=<YOUR_KEY> \
-e BIGDATA_CLOUD_API_KEY=<YOUR_KEY> \
rouhim/this-week-in-past
Docker compose example:
version: "3.9"
services:
this-week-in-past:
image: rouhim/this-week-in-past
volumes:
- /path/to/pictures:/resources:ro # mount read only
ports:
- "8080:8080"
All configuration is done via environment variables:
Name | Description | Default value | Can be overwritten in URL |
---|---|---|---|
RESOURCE_PATHS | A list of folders from which the images should be loaded (comma separated). | /resources (Container only) |
|
DATA_FOLDER | Path to a folder where the data should be stored, needs to read/write access | /data (Container only) |
|
PORT | Port on which the application should listen. | 8080 |
|
SLIDESHOW_INTERVAL | Interval of the slideshow in seconds | 30 | x |
REFRESH_INTERVAL | Interval how often the page should be reloaded in minutes | 180 | |
DATE_FORMAT | Date format of the image taken date (https://docs.rs/chrono/0.4.19/chrono/format/strftime/index.html) | %d.%m.%Y | |
BIGDATA_CLOUD_API_KEY | To resolve geo coordinates to city name. Obtain here: https://www.bigdatacloud.com | ||
OPEN_WEATHER_MAP_API_KEY | To receive weather live data. Obtain here: https://openweathermap.org/api | ||
WEATHER_ENABLED | Indicates if weather should be shown in the slideshow | false | x |
WEATHER_LOCATION | Name of a city | Berlin | |
WEATHER_LANGUAGE | Weather language (ISO_639-1) | en | |
WEATHER_UNIT | Weather units (metric or imperial ) |
metric | |
HOME_ASSISTANT_BASE_URL | Home assistant base url (e.g.: http://192.168.0.123:8123 ) |
||
HOME_ASSISTANT_ENTITY_ID | Home assistant entity id to load the weather from (e.g.: sensor.outside_temperature ) |
||
HOME_ASSISTANT_API_TOKEN | Home assistant api access token | ||
SHOW_HIDE_BUTTON | Show the hide button on the slideshow | false | x |
Some parameters, as marked in the table, can be overwritten as URL parameter e.g.: http://localhost:8080/?SLIDESHOW_INTERVAL=10&SHOW_HIDE_BUTTON=false
Please login to review this project.
No reviews for this project yet.
Yet another simple static gallery generator.
A smart imaging service and enables on-demand cropping, res…
Minimalist self-hosted photo stream.
Comments (0)
Please login to join the discussion on this project.