Compare commits
3 Commits
0894aa74e2
...
852bce9c61
Author | SHA1 | Date | |
---|---|---|---|
|
852bce9c61 | ||
|
b73a57e701 | ||
|
5afb90a3ce |
@ -4,7 +4,7 @@
|
||||
#-----------------------------------------------------------------------
|
||||
# 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
|
||||
@ -20,6 +20,7 @@ $fileTester = "$PSScriptRoot\mediainfo.exe"
|
||||
if(!(Test-Path $NVEncoder -PathType leaf))
|
||||
{
|
||||
Write-Host "NVEncC64.exe not found, please check path in `"$NVEncoder`"." -ForegroundColor Yellow
|
||||
Read-Host -Prompt "Press Enter to exit"
|
||||
exit
|
||||
}
|
||||
|
||||
@ -28,7 +29,7 @@ $videos = Get-ChildItem -LiteralPath $videoPath -Name -Recurse -Include ('*.mp4'
|
||||
|
||||
# Instantiating used variables:
|
||||
$videoID = 1
|
||||
$convertedVideos = 0
|
||||
$convertedVideos = 1
|
||||
$notConvertedVideos = 0
|
||||
$failedVideos = 0
|
||||
# Square brackets are used as wildcards in Powershell.
|
||||
@ -39,7 +40,8 @@ $count = $videos.Count
|
||||
if($videos.Count -lt 1)
|
||||
{
|
||||
Write-Host "No videos found in: $videoPath" -ForegroundColor Red
|
||||
exit
|
||||
Read-Host -Prompt "Press Enter to exit"
|
||||
exit
|
||||
}
|
||||
# Log write function:
|
||||
Function LogWrite
|
||||
@ -81,9 +83,9 @@ foreach($video in $videos)
|
||||
if($codec -ne "HEVC")
|
||||
{
|
||||
# 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 {
|
||||
$outputFile = $videoPath + $video.Insert(($video.Length - 4), '-HEVC')
|
||||
}
|
||||
@ -158,7 +160,7 @@ foreach($video in $videos)
|
||||
LogWrite "$inputFile"
|
||||
}
|
||||
}
|
||||
Start-Sleep -Seconds 4
|
||||
#Start-Sleep -Seconds 4
|
||||
} else
|
||||
{
|
||||
# Alert if video doesn't need conversion:
|
||||
@ -170,7 +172,6 @@ foreach($video in $videos)
|
||||
$notConvertedVideos = $notConvertedVideos + 1
|
||||
$Logfile = "$PSScriptRoot\logs\$logFolderName\skipped_files.log"
|
||||
LogWrite "$inputFile"
|
||||
Start-Sleep -Seconds 4
|
||||
}
|
||||
# Increments video counter:
|
||||
$videoID = $videoID + 1
|
||||
|
Loading…
Reference in New Issue
Block a user