I have something even easier than downloading things and sliding sliders and setting crf and shit for windows:
>download and install ffmpeg, make sure it exists as environment variable in PATH
>create a new file called kiwiconvert.ps1
>inside of it paste the following powershell script:
Code:
param (
[string]$InputVideoFile
)
if (-not (Test-Path -Path $InputVideoFile)) {
Write-Host "Input video file not found: $InputVideoFile"
exit
}
$BaseName = [System.IO.Path]::GetFileNameWithoutExtension($InputVideoFile)
$OutputVideoFile = "${BaseName}_kwf.mp4"
ffmpeg -i "$InputVideoFile" -c:v libx264 -crf 26 -c:a aac "$OutputVideoFile"
Write-Host "Done. $OutputVideoFile"
>save the file
>add the file to PATH environment variable
Now every time you need to do a clip for the farms you shift+right click in the folder, open terminal window here, you write kiwic click tab it autocompletes it write first letters of video name click tab again and enter and it spews the new file with -c:v libx264 -crf 26 -c:a aac in .mp4 container change that if you need to