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