Skip to content

Instantly share code, notes, and snippets.

@LibreTechie
LibreTechie / batch_cleanv1.0.sh
Created October 3, 2025 06:22
Optimize videos in Google Photos
#!/usr/bin/env bash
DIR="$1"
if [[ -z "$DIR" || ! -d "$DIR" ]]; then
echo "❌ Please provide a valid directory path."
exit 1
fi
mapfile -t FILES < <(find "$DIR" -type f \( -iname "*.mp4" -o -iname "*.mov" -o -iname "*.mkv" \))
@LibreTechie
LibreTechie / ffmpeg-compress-mp4
Created January 22, 2022 04:05 — forked from lukehedger/ffmpeg-compress-mp4
Compress mp4 using FFMPEG
$ ffmpeg -i input.mp4 -vcodec h264 -acodec mp2 output.mp4