Align all PNG images with the word "breaking":
python quick_cuts.py images/*.png -w "breaking"Process all images in a folder:
python quick_cuts.py images/ -w "news"Match words that start with "warp" (like "warpdotdev"):
python quick_cuts.py images/ -w "warp" --partialCreate 4K resolution outputs:
python quick_cuts.py images/ -w "alert" -s 3840x2160 --word-height 200Save to a custom location:
python quick_cuts.py images/ -w "update" -o "C:\Users\lewis\aligned_outputs"Use 16 workers for faster processing:
python quick_cuts.py images/ -w "flash" --workers 16For subtle word placement:
python quick_cuts.py images/ -w "live" --word-height 50# Process multiple news screenshots
python quick_cuts.py "news_screenshots/*.png" -w "breaking" -s 1920x1080 --word-height 120# Process vertical format for social media
python quick_cuts.py tiktok_frames/ -w "viral" -s 1080x1920 --word-height 150# Process same images for different words
python quick_cuts.py images/ -w "breaking"
python quick_cuts.py images/ -w "news"
python quick_cuts.py images/ -w "alert"
# Results in: aligned_breaking/, aligned_news/, aligned_alert/If words aren't being detected, try:
# Use partial matching for better detection
python quick_cuts.py problem_image.png -w "text" --partial
# Process with fewer workers to see detailed logs
python quick_cuts.py images/ -w "word" --workers 1For filenames with unicode characters:
# The tool handles these automatically
python quick_cuts.py "Screenshot*.png" -w "update"