Compare commits

...

2 Commits

Author SHA1 Message Date
5d6297b01e Update comments 2023-11-21 00:33:30 -04:00
3d4207467a Reencode wallpaper engine files 2023-11-21 00:12:55 -04:00

View File

@ -0,0 +1,4 @@
# Rencode arg file 1 with ffmpeg crf and veryslow preset in x264 format, and audio with aac 192kbps and append "-Small" to the output filename
# Usage: ffmpeg-encode.ps1 arg1
$file = Get-ChildItem $args[0]
ffmpeg -i $file.FullName -c:v libx264 -preset veryslow -crf 20 -c:a aac -b:a 192k "$($file.BaseName)-Small.mp4"