ffmpeg convert to 720p with x264

master
zeus 2022-11-09 00:59:45 +01:00
parent a253df0f48
commit 67009e4cd9
1 changed files with 4 additions and 0 deletions

View File

@ -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