A bunch of scriptlets I created or found
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CLITools/ffscale.ps1

5 lines
158 B

4 years ago
$file = $args[0]
$fileout = $args[1]
$scale = $args[2]
ffmpeg -i $file -filter:v scale=$scale -c:a copy -map 0 -preset veryfast -movflags +faststart $fileout