Created
February 13, 2025 18:17
-
-
Save jcchikikomori/51db290438a4901a59acb614b714edc3 to your computer and use it in GitHub Desktop.
Requires ImageMagick & ffmpeg.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Check required tools | |
if ! command -v ffmpeg &> /dev/null || ! command -v magick &> /dev/null; then | |
echo "Error: This script requires ffmpeg and ImageMagick to be installed." | |
exit 1 | |
fi | |
# Create directories | |
mkdir -p raw_frames upscaled_frames | |
# Extract frames | |
ffmpeg -i "$1" -vsync 0 raw_frames/$1.%06d.png | |
# Upscale frames using ImageMagick | |
for file in raw_frames/*.png; do | |
filename=$(basename "$file") | |
magick convert "$file" -filter Lanczos -resize 400% -quality 100 upscaled_frames/"$filename" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment