38 lines
759 B
Bash
Executable File
38 lines
759 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Script to generate thumbnails for lf
|
|
|
|
if ! [ -f "$1" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
cache="${XDG_CACHE_HOME:-$HOME/.cache}/lf"
|
|
index="$cache/index.json"
|
|
movie="$(realpath "$1")"
|
|
|
|
mkdir -p "$cache"
|
|
|
|
if [ -f "$index" ]; then
|
|
thumbnail="$(jq -r ". \"$movie\"" <"$index")"
|
|
if [[ "$thumbnail" != "null" ]]; then
|
|
if [[ ! -f "$cache/$thumbnail" ]]; then
|
|
exit 1
|
|
fi
|
|
echo "$cache/$thumbnail"
|
|
exit 0
|
|
fi
|
|
fi
|
|
|
|
thumbnail="$(uuidgen).jpg"
|
|
|
|
if ! ffmpegthumbnailer -i "$movie" -o "$cache/$thumbnail" -s 0 2>/dev/null; then
|
|
exit 1
|
|
fi
|
|
|
|
if [[ ! -f "$index" ]]; then
|
|
echo "{\"$movie\": \"$thumbnail\"}" >"$index"
|
|
fi
|
|
json="$(jq -r --arg "$movie" "$thumbnail" ". + {\"$movie\": \"$thumbnail\"}" <"$index")"
|
|
echo "$json" >"$index"
|
|
|
|
echo "$cache/$thumbnail"
|