ffmpeg convert to 720p with x264
parent
a253df0f48
commit
67009e4cd9
|
@ -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
|
Loading…
Reference in New Issue