1
0
mirror of https://github.com/EliasKotlyar/Xiaomi-Dafang-Hacks.git synced 2025-09-03 13:12:44 +02:00
Files
Combie81 5548ab554f Moving config entries/cleanup
Moved some configutation options to the config files

Minor text changes

Converted a lot of spaces to tabs
2020-07-16 10:20:39 +02:00

57 lines
1.4 KiB
Bash

#!/bin/sh
# Takes a snapshot every N seconds interval configured
# in /system/sdcard/config/timelapse.conf
PIDFILE='/run/timelapse.pid'
TIMELAPSE_CONF='/system/sdcard/config/timelapse.conf'
if [ -f "$TIMELAPSE_CONF" ]; then
. "$TIMELAPSE_CONF" 2>/dev/null
fi
if [ -z "$TIMELAPSE_INTERVAL" ]; then TIMELAPSE_INTERVAL=2.0; fi
# because``date`` doesn't support milliseconds +%N
# we have to use a running counter to generate filenames
counter=0
last_prefix=''
ts_started=$(date +%s)
while true; do
SAVE_DIR=$DCIM_PATH
if [ $SAVE_DIR_PER_DAY -eq 1 ]; then
SAVE_DIR="$DCIM_PATH/$(date +%Y-%m-%d)/$(date +%H)"
fi
if [ ! -d "$SAVE_DIR" ]; then
mkdir -p $SAVE_DIR
fi
filename_prefix="$(date +%Y-%m-%d_%H-%M-%S)"
if [ "$filename_prefix" = "$last_prefix" ]; then
counter=$(($counter + 1))
else
counter=1
last_prefix="$filename_prefix"
fi
counter_formatted=$(printf '%03d' $counter)
filename="${filename_prefix}_${counter_formatted}.jpg"
if [ -z "$COMPRESSION_QUALITY" ]; then
/system/sdcard/bin/getimage > "$SAVE_DIR/$filename" &
else
/system/sdcard/bin/getimage | /system/sdcard/bin/jpegoptim -m"$COMPRESSION_QUALITY" --stdin --stdout > "$SAVE_DIR/$filename" &
fi
sleep $TIMELAPSE_INTERVAL
if [ $TIMELAPSE_DURATION -gt 0 ]; then
ts_now=$(date +%s)
elapsed=$(($ts_now - $ts_started))
if [ $(($TIMELAPSE_DURATION * 60)) -le $elapsed ]; then
break
fi
fi
done
# loop completed so let's purge pid file
rm "$PIDFILE"