Files
sddm-theme/themes/sm1tee/backgrounds/extract_first_frame.sh
Ваше Имя ed9ba99412 update
2025-06-30 23:19:29 +03:00

13 lines
305 B
Bash
Executable File

#!/usr/bin/env bash
green='\033[0;32m'
red='\033[0;31m'
cyan='\033[0;36m'
reset="\033[0m"
if [[ ! -f "$1" ]]; then
echo -e "Usage: ./extract_first_frame.sh ${cyan}<background_video>${reset}"
exit
fi
ffmpeg -i "$1" -vf "select=eq(n\,34)" -vframes 1 $(basename backgrounds/$1 | cut -d"." -f1).png