mirror of
https://github.imc.re/void-land/hyprland-void-dots
synced 2025-04-26 15:53:44 +02:00
8 lines
258 B
Bash
8 lines
258 B
Bash
convert_video_to_gif() {
|
|
local input_video="$1"
|
|
local output_filename="output_$(date +"%Y%m%d%H%M%S").gif"
|
|
|
|
ffmpeg -i "$input_video" -vf "fps=30,scale=1920:-1:flags=lanczos" -c:v gif "$output_filename"
|
|
|
|
echo "GIF created: $output_filename"
|
|
}
|