Fix match error on upercase 'X' in string-reülacement and resulting self deletion

windows-hevc-converter
Michael Reber 4 years ago
parent 3c91c0d78f
commit 5afb90a3ce

@ -4,7 +4,7 @@
#----------------------------------------------------------------------- #-----------------------------------------------------------------------
# Edit the $videoPath variable to point to your video-files folder: # Edit the $videoPath variable to point to your video-files folder:
$videoPath = 'M:\1_movies\_main.movies\' $videoPath = 'M:\2_serien\_main.series\'
#----------------------------------------------------------------------- #-----------------------------------------------------------------------
# HEVC profiles: main, main10, main444 # HEVC profiles: main, main10, main444
@ -20,6 +20,7 @@ $fileTester = "$PSScriptRoot\mediainfo.exe"
if(!(Test-Path $NVEncoder -PathType leaf)) if(!(Test-Path $NVEncoder -PathType leaf))
{ {
Write-Host "NVEncC64.exe not found, please check path in `"$NVEncoder`"." -ForegroundColor Yellow Write-Host "NVEncC64.exe not found, please check path in `"$NVEncoder`"." -ForegroundColor Yellow
Read-Host -Prompt "Press Enter to exit"
exit exit
} }
@ -39,7 +40,8 @@ $count = $videos.Count
if($videos.Count -lt 1) if($videos.Count -lt 1)
{ {
Write-Host "No videos found in: $videoPath" -ForegroundColor Red Write-Host "No videos found in: $videoPath" -ForegroundColor Red
exit Read-Host -Prompt "Press Enter to exit"
exit
} }
# Log write function: # Log write function:
Function LogWrite Function LogWrite
@ -81,9 +83,9 @@ foreach($video in $videos)
if($codec -ne "HEVC") if($codec -ne "HEVC")
{ {
# Configure new file naming: # Configure new file naming:
if ($video -match "x264") if ($video -match "264")
{ {
$outputFile = $videoPath + $video.Replace("x264", "x265") $outputFile = $videoPath + $video.Replace("264", "265")
} else { } else {
$outputFile = $videoPath + $video.Insert(($video.Length - 4), '-HEVC') $outputFile = $videoPath + $video.Insert(($video.Length - 4), '-HEVC')
} }
@ -158,7 +160,7 @@ foreach($video in $videos)
LogWrite "$inputFile" LogWrite "$inputFile"
} }
} }
Start-Sleep -Seconds 4 #Start-Sleep -Seconds 4
} else } else
{ {
# Alert if video doesn't need conversion: # Alert if video doesn't need conversion:
@ -170,7 +172,6 @@ foreach($video in $videos)
$notConvertedVideos = $notConvertedVideos + 1 $notConvertedVideos = $notConvertedVideos + 1
$Logfile = "$PSScriptRoot\logs\$logFolderName\skipped_files.log" $Logfile = "$PSScriptRoot\logs\$logFolderName\skipped_files.log"
LogWrite "$inputFile" LogWrite "$inputFile"
Start-Sleep -Seconds 4
} }
# Increments video counter: # Increments video counter:
$videoID = $videoID + 1 $videoID = $videoID + 1

Loading…
Cancel
Save