snippets/shrinkVideo
2023-01-01 17:53:22 +01:00

15 lines
208 B
Bash
Executable File

#!/bin/bash
if [ "$#" -ne 1 ]; then
echo "USAGE: $0 FILE"
exit 1
fi
fullpath="$1"
source fileextensions
outfile="$dir/$filename""Shrunk.mp4"
echo "$outfile"
ffmpeg -y -i "$fullpath" -s vga "$outfile"