Quickies

[categories] [index] [all (561)] [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
    
  2. ffmpeg -i src.mp4 -ss 4:07:20 -to 5:13:00 -c copy dst.mp4