From 5d6297b01e6deedf36bfbad5331cf5a77e6e0dd6 Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Tue, 21 Nov 2023 00:33:30 -0400 Subject: [PATCH] Update comments --- WallpaperEngineTools/ffmpeg-encode.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WallpaperEngineTools/ffmpeg-encode.ps1 b/WallpaperEngineTools/ffmpeg-encode.ps1 index 7c35242..6626f64 100644 --- a/WallpaperEngineTools/ffmpeg-encode.ps1 +++ b/WallpaperEngineTools/ffmpeg-encode.ps1 @@ -1,4 +1,4 @@ -# Rencode arg file 1 with ffmpeg crf 20 and veryslow preset in x264 format, and audio with aac 192kbps and append "-Small" to the output filename -# Usage: ffmpeg-encode.ps1 arg1 arg2 +# 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" \ No newline at end of file