Quickies

[categories] [index] [all (532)] [latest]

ffmpeg
  1. for f in *.MOV; do ffmpeg -i "$f" -vf "scale=1280:-2" -preset medium -crf 28 -map_metadata 0 "resized_$f"; done
    
    for f in *.MOV; do
        if [[ "$f" != resized_* ]]; then
            touch -r "$f" "resized_$f"
        fi
    done