8 lines
116 B
Bash
Executable file
8 lines
116 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ $# -ne 1 ]
|
|
then
|
|
echo "usage: [infile]"
|
|
exit 1
|
|
fi
|
|
ffmpeg -i "$1" -vf format=yuv420p "$1.mp4"
|