diff --git a/bash/ffmpeg_convert_to_x264_720p.sh b/bash/ffmpeg_convert_to_x264_720p.sh new file mode 100755 index 0000000..1c531e6 --- /dev/null +++ b/bash/ffmpeg_convert_to_x264_720p.sh @@ -0,0 +1,4 @@ +#!/bin/bash +infile=$1 +outfile=$2 +ffmpeg -i $1 -map 0 -c:v libx264 -crf 18 -vf format=yuv420p,scale=1280x720 -c:a copy $2