From 802fb5c86def53a7d99bcde45788edaae8943ff8 Mon Sep 17 00:00:00 2001 From: Eric Claeys <83164203+EricClaeys@users.noreply.github.com> Date: Sun, 17 Sep 2023 01:03:47 -0500 Subject: [PATCH] Update functions.sh: rename variable --- scripts/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/functions.sh b/scripts/functions.sh index e2324a318..9a30d5e79 100644 --- a/scripts/functions.sh +++ b/scripts/functions.sh @@ -756,7 +756,7 @@ function make_thumbnail() local SEC="${1}" local INPUT_FILE="${2}" local THUMBNAIL="${3}" - local THUMBNAIL_SIZE_X="$( settings ".thumbnailssizex" )" + local THUMBNAIL_SIZE_X="$( settings ".thumbnailsizex" )" ffmpeg -loglevel error -ss "00:00:${SEC}" -i "${INPUT_FILE}" \ -filter:v scale="${THUMBNAIL_SIZE_X}:-1" -frames:v 1 "${THUMBNAIL}" }