Skip to content

Instantly share code, notes, and snippets.

View joshespi's full-sized avatar

Josh Espinoza joshespi

View GitHub Profile
@joshespi
joshespi / shrink-mp4.sh
Last active February 16, 2026 16:10
Simple shrink a mp4 below 10mb. Discord limits to 10MB. I often have the issue where my videos are slightly above that. this will help make it uploadable.
#!/usr/bin/env bash
# Requires
# - ffmpeg
input="$1"
if [[ -z "$input" ]]; then
echo "Usage: shrink-video <input-video>"
exit 1