dotfiles/templates/bin/remux

9 lines
116 B
Text
Raw Normal View History

2023-04-11 13:58:50 -05:00
#!/bin/sh
if [ $# -ne 1 ]
then
echo "usage: [infile]"
exit 1
fi
ffmpeg -i "$1" -vf format=yuv420p "$1.mp4"