Skip to content

Instantly share code, notes, and snippets.

View WarrenBuffering's full-sized avatar

WarrenBuffering WarrenBuffering

  • South Dakota
  • 16:26 (UTC -07:00)
View GitHub Profile
@WarrenBuffering
WarrenBuffering / faster_compress_video
Last active August 22, 2024 19:38 — forked from trvswgnr/compress_video
portable shell script to compress videos with ffmpeg
#!/bin/sh
print_usage() {
echo "usage: compress_video <input_file>"
echo "supported formats: mp4, webm, mkv, mov, avi, flv"
}
get_extension() {
f="${1##*/}"
case "$f" in