Compare commits

...

2 Commits

@ -72,7 +72,9 @@ Write-Host "--------------------------------------------------------------------
foreach($video in $videos)
{
# Check filename for '-HVEC' string and skip filetester if true to make it run faster with lots of files already converted
if(! $video -match "-HVEC")
{
$video = $video.Replace("`"", "")
$inputFile = $videoPath + $video
@ -81,6 +83,10 @@ foreach($video in $videos)
$codec = $fileDetails.media.track[1].Format
#echo $codec
} else {}
$codec = 'HVEC'
}
# If not already HEVC, convert video using NVEncC64:
if($codec -ne "HEVC")
{
@ -96,7 +102,7 @@ foreach($video in $videos)
Write-Host
# If the Subtitles should not be copied, delete the "--sub-copy 1,2" argument.
$arguments = "--input `"$inputFile`" --codec hevc --audio-copy 1,2 --sub-copy 1,2 --profile $profile --output `"$outputFile`""
$arguments = "--input `"$inputFile`" --codec hevc --audio-copy 1,2,3,4,5,6 --sub-copy 1,2,3,4,5,6 --profile $profile --output `"$outputFile`""
Start-Process $NVEncoder -ArgumentList $arguments -WindowStyle Minimized

Loading…
Cancel
Save