Compare commits
No commits in common. "852bce9c61b56f775a63deb331b1e824020a162e" and "0894aa74e2db52cff8f10f93d074289fdb2489a3" have entirely different histories.
852bce9c61
...
0894aa74e2
@ -4,7 +4,7 @@
|
||||
#-----------------------------------------------------------------------
|
||||
# Edit the $videoPath variable to point to your video-files folder:
|
||||
|
||||
$videoPath = 'M:\2_serien\_main.series\'
|
||||
$videoPath = 'M:\1_movies\_main.movies\'
|
||||
|
||||
#-----------------------------------------------------------------------
|
||||
# HEVC profiles: main, main10, main444
|
||||
@ -20,7 +20,6 @@ $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
|
||||
}
|
||||
|
||||
@ -29,7 +28,7 @@ $videos = Get-ChildItem -LiteralPath $videoPath -Name -Recurse -Include ('*.mp4'
|
||||
|
||||
# Instantiating used variables:
|
||||
$videoID = 1
|
||||
$convertedVideos = 1
|
||||
$convertedVideos = 0
|
||||
$notConvertedVideos = 0
|
||||
$failedVideos = 0
|
||||
# Square brackets are used as wildcards in Powershell.
|
||||
@ -40,7 +39,6 @@ $count = $videos.Count
|
||||
if($videos.Count -lt 1)
|
||||
{
|
||||
Write-Host "No videos found in: $videoPath" -ForegroundColor Red
|
||||
Read-Host -Prompt "Press Enter to exit"
|
||||
exit
|
||||
}
|
||||
# Log write function:
|
||||
@ -83,9 +81,9 @@ foreach($video in $videos)
|
||||
if($codec -ne "HEVC")
|
||||
{
|
||||
# Configure new file naming:
|
||||
if ($video -match "264")
|
||||
if ($video -match "x264")
|
||||
{
|
||||
$outputFile = $videoPath + $video.Replace("264", "265")
|
||||
$outputFile = $videoPath + $video.Replace("x264", "x265")
|
||||
} else {
|
||||
$outputFile = $videoPath + $video.Insert(($video.Length - 4), '-HEVC')
|
||||
}
|
||||
@ -160,7 +158,7 @@ foreach($video in $videos)
|
||||
LogWrite "$inputFile"
|
||||
}
|
||||
}
|
||||
#Start-Sleep -Seconds 4
|
||||
Start-Sleep -Seconds 4
|
||||
} else
|
||||
{
|
||||
# Alert if video doesn't need conversion:
|
||||
@ -172,6 +170,7 @@ 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