Adding extra scripts for converting back to VR x264 support or 8K x264
This commit is contained in:
parent
951f072b26
commit
2b71a0d860
304
_extras/convert_Videos_back_to_x264_supports_up_to_8k.ps1
Normal file
304
_extras/convert_Videos_back_to_x264_supports_up_to_8k.ps1
Normal file
@ -0,0 +1,304 @@
|
|||||||
|
# Converts videos back to x264 for given path: (Video resolution is same as source up to 8K)
|
||||||
|
# Converter: https://github.com/rigaya/NVEnc/releases
|
||||||
|
|
||||||
|
# Forces a higher resolution with ffmpeg than actually intended for the x264 standard.
|
||||||
|
# Workaround to createn non-standart 8K x254 videos.
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------
|
||||||
|
# Edit the $videoPath variable to point to your video-files folder:
|
||||||
|
$videoPath = 'Z:\__VR_SP_CONTENT\_data'
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------
|
||||||
|
$forceReviewAll = $false # If set to $true all failed conversions are reviewed even those that are obviously corrupt.
|
||||||
|
|
||||||
|
$ffmpegBin = "$PSScriptRoot\ffmpeg\ffmpeg.exe"
|
||||||
|
$fileTester = "$PSScriptRoot\..\mediainfo.exe"
|
||||||
|
$reviewPlayer = "C:\Program Files\VideoLAN\VLC\vlc.exe"
|
||||||
|
|
||||||
|
#############################################################################################################
|
||||||
|
# Testing and conversion preparations #
|
||||||
|
#############################################################################################################
|
||||||
|
if(!(Test-Path $ffmpegBin -PathType leaf))
|
||||||
|
{
|
||||||
|
Write-Host "ffmpeg.exe not found, please check path in `"$ffmpegBin`"." -ForegroundColor Yellow
|
||||||
|
Read-Host -Prompt "Press Enter to exit"
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
# Get video list from provided path:
|
||||||
|
$videos = Get-ChildItem -LiteralPath $videoPath -Name -Recurse -Include ('*.mp4', '*.mkv') #('*.avi', '*.mp4', '*.mkv') - avi currently doesn't work.
|
||||||
|
|
||||||
|
# Instantiating used variables:
|
||||||
|
$videoID = 1
|
||||||
|
$convertedVideos = 0
|
||||||
|
$notConvertedVideos = 0
|
||||||
|
$failedVideos = 0
|
||||||
|
# Square brackets are used as wildcards in Powershell.
|
||||||
|
# To recognize this as normal text, the LogWite function uses the -LiteralPath parameter instead of the -Path parameter.
|
||||||
|
$logFolderName = $((Get-Date).tostring("yyyy-MM-dd") + ' - [run started at ' + (Get-Date).tostring("HH-mm") + ']')
|
||||||
|
$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:
|
||||||
|
Function LogWrite
|
||||||
|
{
|
||||||
|
Param ([string]$logstring)
|
||||||
|
Add-content -LiteralPath $Logfile -value $logstring
|
||||||
|
}
|
||||||
|
# Create new log directory:
|
||||||
|
New-Item -itemType Directory -Path $PSScriptRoot\..\logs\ -Name $logFolderName > $null
|
||||||
|
# Calculates the total size of the given directory in GB:
|
||||||
|
Write-Host "Inizialization in progress.."
|
||||||
|
$folderSizeInGB = "{0:N2} GB" -f ((Get-ChildItem $videoPath -Recurse | Measure-Object -Property Length -Sum -ErrorAction Stop).Sum / 1GB)
|
||||||
|
Clear-Host # Clears the upper message from the window
|
||||||
|
#############################################################################################################
|
||||||
|
# END - Testing and conversion preparations
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#############################################################################################################
|
||||||
|
# Main conversion process #
|
||||||
|
#############################################################################################################
|
||||||
|
Write-Host "Found $count videos with a total size of $folderSizeInGB - starting converter.." -ForegroundColor Cyan
|
||||||
|
Write-Host
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
|
||||||
|
foreach($video in $videos)
|
||||||
|
{
|
||||||
|
|
||||||
|
$video = $video.Replace("`"", "")
|
||||||
|
$inputFile = $videoPath + "\" + $video
|
||||||
|
|
||||||
|
# Pre-file-check if "HEVC" exist in filename skip filechecking:
|
||||||
|
if ($video -match "HEVC")
|
||||||
|
{
|
||||||
|
$codec = "HEVC"
|
||||||
|
} else {
|
||||||
|
# Get and check File info for codec, if it's already HEVC: - JSON query: (['media']['track'][1]['Format'])
|
||||||
|
$fileDetails = cmd /c $fileTester $inputFile --Output=JSON | ConvertFrom-Json
|
||||||
|
$codec = $fileDetails.media.track[1].Format
|
||||||
|
}
|
||||||
|
|
||||||
|
# If not already HEVC, convert video using NVEncC64:
|
||||||
|
if($codec -eq "HEVC")
|
||||||
|
{
|
||||||
|
# Configure new file naming:
|
||||||
|
if ($video -match "265")
|
||||||
|
{
|
||||||
|
$outputFile = $videoPath + "\" + $video.Replace("265", "264")
|
||||||
|
} else {
|
||||||
|
$outputFile = $videoPath + "\" + $video.Insert(($video.Length - 4), '-x264')
|
||||||
|
}
|
||||||
|
Write-Host "Analyzing video ($videoID of $count), starting convertion of number: $($convertedVideos + 1) please wait.." -ForegroundColor Magenta
|
||||||
|
Write-Host "$video `nto:`n$outputFile" -ForegroundColor White
|
||||||
|
Write-Host
|
||||||
|
|
||||||
|
# If the Subtitles should not be copied, delete the "--sub-copy 1,2" argument.
|
||||||
|
#$arguments = "--input `"$inputFile`" --codec AVC --audio-copy 1,2,3,4 --sub-copy 1,2,3,4 --profile $profile --output `"$outputFile`""
|
||||||
|
$arguments = "-i `"$inputFile`" -c:v libx264 -preset fast -crf 18 -c:a copy -map 0 -map_metadata 0 -movflags +faststart -pix_fmt yuv420p `"$outputFile`""
|
||||||
|
|
||||||
|
Start-Process $ffmpegBin -ArgumentList $arguments -WindowStyle Minimized
|
||||||
|
|
||||||
|
#$processName = 'NVEncC64'
|
||||||
|
$processName = 'ffmpeg'
|
||||||
|
Start-Sleep -Seconds 1
|
||||||
|
# Sets to use 3 cores (always set to one less core that your CPU has)
|
||||||
|
# 2 Cores = 3, 3 Cores = 7, 4 cores = 15, 5 cores = 31, 6 cores = 63
|
||||||
|
# Code to calculate for your CPU:
|
||||||
|
# $noOfCores = Get-WmiObject Win32_Processor | Measure-Object NumberOfLogicalProcessors -Sum
|
||||||
|
# $noOfCores.Sum = $noOfCores.Sum - 1
|
||||||
|
# [math]::Pow(2,$($noOfCores).Sum) - 1
|
||||||
|
#
|
||||||
|
$process = Get-Process $processName; $process.ProcessorAffinity=7
|
||||||
|
Start-Sleep -Seconds 2
|
||||||
|
# Sets priorty to High
|
||||||
|
# Values: High, AboveNormal, Normal, BelowNormal, Low
|
||||||
|
$process = Get-Process -Id $process.Id
|
||||||
|
$process.PriorityClass = 'High'
|
||||||
|
|
||||||
|
# Waits for process to complete
|
||||||
|
$processID = (Get-Process $processName).id
|
||||||
|
Wait-Process -Id $processID
|
||||||
|
|
||||||
|
|
||||||
|
if(Test-Path -LiteralPath $outputFile)
|
||||||
|
# Specifies a path to be tested. Unlike Path, the value of the LiteralPath parameter is used exactly as it is typed.
|
||||||
|
#No characters are interpreted as wildcard characters.
|
||||||
|
{
|
||||||
|
Write-Host "CONVERSION DONE! FILE: `"$outputFile`" FOUND" -ForegroundColor Yellow
|
||||||
|
Start-Sleep -Seconds 4
|
||||||
|
|
||||||
|
# Check if File is valid; the duration of video must be the same! (['media']['track'][0]['Duration']):
|
||||||
|
$fileDetails_new = cmd /c $fileTester $outputFile --Output=JSON | ConvertFrom-Json
|
||||||
|
|
||||||
|
# This code gets the duration and splits it in two parts, only the part before the "." is needed:
|
||||||
|
$StreamSize_old,$notused = $($fileDetails.media.track[0].Duration).split('.')
|
||||||
|
$StreamSize_new,$notused = $($fileDetails_new.media.track[0].Duration).split('.')
|
||||||
|
|
||||||
|
Write-Host
|
||||||
|
Write-Host "Old Duration was: $StreamSize_old `nnew Duration is: $StreamSize_new" -ForegroundColor White
|
||||||
|
Write-Host
|
||||||
|
|
||||||
|
if ($StreamSize_new -eq $StreamSize_old)
|
||||||
|
{
|
||||||
|
# Delete old video File!
|
||||||
|
Write-Host "Conversion Successful! - Deleting old file.."
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
Remove-Item -LiteralPath $inputFile
|
||||||
|
$convertedVideos = $convertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\..\logs\$logFolderName\successfully_converted.log"
|
||||||
|
LogWrite "$outputFile"
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
if (($StreamSize_new -eq $($StreamSize_old - 1)) -or ($($StreamSize_new - 1) -eq $StreamSize_old))
|
||||||
|
{
|
||||||
|
# Newly converted file does not match exactly the old duration. But diffrence its not more than 1 sec!
|
||||||
|
Write-Host "Conversion Done! - Streamsize is not exactly the same. But still OK - Ignoring!"
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
Remove-Item -LiteralPath $inputFile
|
||||||
|
$convertedVideos = $convertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\..\logs\$logFolderName\successfully_converted.log"
|
||||||
|
LogWrite "$outputFile"
|
||||||
|
|
||||||
|
} elseif (($StreamSize_new -ge $($StreamSize_old - 20)) -or ($($StreamSize_new - 20) -ge $StreamSize_old))
|
||||||
|
{
|
||||||
|
# New converted file has been converted but with up to max 20 seconds deviation!
|
||||||
|
Write-Host "Conversion Done! - But streamsize is not the same. - Please review!"
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
$review = $true
|
||||||
|
$convertedVideos = $convertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\..\logs\$logFolderName\review_needed.log"
|
||||||
|
LogWrite "$inputFile,$outputFile"
|
||||||
|
|
||||||
|
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
if ($forceReviewAll)
|
||||||
|
{
|
||||||
|
# Mark probably corrupted file for review
|
||||||
|
Write-Host "Conversion Failed! - Marked for review! because it is desired."
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
$review = $true
|
||||||
|
$convertedVideos = $convertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\..\logs\$logFolderName\review_needed.log"
|
||||||
|
LogWrite "$inputFile,$outputFile"
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
# Delete obviously corrupt File!
|
||||||
|
Write-Host "Conversion Failded! - Deleting new converted file.." -ForegroundColor Red
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
Remove-Item -LiteralPath $outputFile
|
||||||
|
$failedVideos = $failedVideos + 1
|
||||||
|
$notConvertedVideos = $notConvertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\..\logs\$logFolderName\error_during_conversion.log"
|
||||||
|
LogWrite "$inputFile,$StreamSize_new,$StreamSize_old,"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
# Alert if video doesn't need conversion:
|
||||||
|
Write-Host "Analyzing video ($videoID of $count) - skip" -ForegroundColor Magenta
|
||||||
|
Write-Host "$video is already in correct format!" -ForegroundColor Green
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
# Increments not converted video counter:
|
||||||
|
$notConvertedVideos = $notConvertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\..\logs\$logFolderName\skipped_files.log"
|
||||||
|
LogWrite "$inputFile"
|
||||||
|
}
|
||||||
|
# Increments video counter:
|
||||||
|
$videoID = $videoID + 1
|
||||||
|
$outputFile = "" # Resets the variable to nothing, that in case of an error the old file is not affected.
|
||||||
|
}
|
||||||
|
#############################################################################################################
|
||||||
|
# END - Main conversion process
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#############################################################################################################
|
||||||
|
# Evaluation part of the conversion script #
|
||||||
|
#############################################################################################################
|
||||||
|
if ($review)
|
||||||
|
{
|
||||||
|
$reviewFiles = Get-content -LiteralPath "$PSScriptRoot\..\logs\$logFolderName\review_needed.log" | Measure-Object –Line
|
||||||
|
$ReviewCount = $reviewFiles.Lines
|
||||||
|
|
||||||
|
Write-Host "There are $ReviewCount files to review.." -ForegroundColor Yellow
|
||||||
|
Read-Host -Prompt "Press Enter to start reviewing first file"
|
||||||
|
Write-Host
|
||||||
|
Write-Host "################################################################################################"
|
||||||
|
$review_count = 1
|
||||||
|
|
||||||
|
foreach($review_pair in Get-Content -LiteralPath "$PSScriptRoot\..\logs\$logFolderName\review_needed.log")
|
||||||
|
{
|
||||||
|
$oldFile,$newFile = $review_pair.split(',')
|
||||||
|
Write-Host "Playing $review_count converted file: $newFile"
|
||||||
|
Write-Host
|
||||||
|
|
||||||
|
# Starting VLC Player with the file to review
|
||||||
|
Start-Process $reviewPlayer -ArgumentList `"$newFile`"
|
||||||
|
Start-Sleep -Seconds 6
|
||||||
|
|
||||||
|
# Wait until player is closed.
|
||||||
|
$processID = (Get-Process "vlc").id
|
||||||
|
Wait-Process -Id $processID
|
||||||
|
|
||||||
|
$msg = 'Do you want to keep the newly converted file and delete the old? (N for deleting NEW-file) [Y/N]'
|
||||||
|
do {
|
||||||
|
$response = Read-Host -Prompt $msg
|
||||||
|
} until (($response -eq 'n') -or ($response -eq 'y'))
|
||||||
|
|
||||||
|
if ($response -eq 'y')
|
||||||
|
{
|
||||||
|
Write-Host "delete old file, keep newly converted.."
|
||||||
|
$to_delete = $oldFile
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
Write-Host "delete newly converted, keep old file"
|
||||||
|
$to_delete = $newFile
|
||||||
|
$failedVideos = $failedVideos + 1
|
||||||
|
$convertedVideos = $convertedVideos - 1
|
||||||
|
}
|
||||||
|
Write-Host "DELETED: $to_delete" -ForegroundColor Red
|
||||||
|
Remove-Item -LiteralPath $to_delete
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
Start-Sleep -Seconds 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Host "Final calculations are in progress.."
|
||||||
|
$folderSizeInGB2 = "{0:N2} GB" -f ((Get-ChildItem $videoPath -Recurse | Measure-Object -Property Length -Sum -ErrorAction Stop).Sum / 1GB)
|
||||||
|
if($notConvertedVideos -eq 0)
|
||||||
|
{
|
||||||
|
Write-Host "Finished converted $convertedVideos out of $count videos." -ForegroundColor Green
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
if($failedVideos -eq 0)
|
||||||
|
{
|
||||||
|
Write-Host "Finished converted $convertedVideos out of $count videos. - $notConvertedVideos where not converted because of already correct codec!" -ForegroundColor Green
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
Write-Host "Finished converted $convertedVideos out of $count videos. - $notConvertedVideos where not converted because error or already correct codec!!" -ForegroundColor Green
|
||||||
|
Write-Host "$failedVideos have failed!" -ForegroundColor Red
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Write-Host "Directory size before conversion: $folderSizeInGB"
|
||||||
|
Write-Host "Directory size after conversion: $folderSizeInGB2"
|
||||||
|
|
||||||
|
Read-Host -Prompt "Press Enter to exit"
|
||||||
|
#############################################################################################################
|
||||||
|
# END - conversion script
|
320
_extras/convert_Videos_back_to_x264_to_support_VR.ps1
Normal file
320
_extras/convert_Videos_back_to_x264_to_support_VR.ps1
Normal file
@ -0,0 +1,320 @@
|
|||||||
|
# Converts videos back to x264 for VR playback for given path:
|
||||||
|
# Converter: https://github.com/rigaya/NVEnc/releases
|
||||||
|
|
||||||
|
# Maximum VR Video Dimensions for Oculus Go are: 3840x2048 pixel!! Higher resolution ends with blackscreen!
|
||||||
|
# Maximum resolution for x264 codec is = 4096x4096 pixel!
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------
|
||||||
|
# Edit the $videoPath variable to point to your video-files folder:
|
||||||
|
$videoPath = 'Z:\__VR_SP_CONTENT\_data'
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------
|
||||||
|
$forceReviewAll = $false # If set to $true all failed conversions are reviewed even those that are obviously corrupt.
|
||||||
|
$forceReconvertAllToMatchVRresolution = $true; # only x264 videos AND videos not bigger than 3840x2048 pixel are playable on the Oculus Go.
|
||||||
|
|
||||||
|
$NVEncoder = "$PSScriptRoot\..\encoder\NVEncC64.exe"
|
||||||
|
$fileTester = "$PSScriptRoot\..\mediainfo.exe"
|
||||||
|
$reviewPlayer = "C:\Program Files\VideoLAN\VLC\vlc.exe"
|
||||||
|
|
||||||
|
#############################################################################################################
|
||||||
|
# Testing and conversion preparations #
|
||||||
|
#############################################################################################################
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
|
# Get video list from provided path:
|
||||||
|
$videos = Get-ChildItem -LiteralPath $videoPath -Name -Recurse -Include ('*.mp4', '*.mkv') #('*.avi', '*.mp4', '*.mkv') - avi currently doesn't work.
|
||||||
|
|
||||||
|
# Instantiating used variables:
|
||||||
|
$videoID = 1
|
||||||
|
$convertedVideos = 0
|
||||||
|
$notConvertedVideos = 0
|
||||||
|
$failedVideos = 0
|
||||||
|
# Square brackets are used as wildcards in Powershell.
|
||||||
|
# To recognize this as normal text, the LogWite function uses the -LiteralPath parameter instead of the -Path parameter.
|
||||||
|
$logFolderName = $((Get-Date).tostring("yyyy-MM-dd") + ' - [run started at ' + (Get-Date).tostring("HH-mm") + ']')
|
||||||
|
$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:
|
||||||
|
Function LogWrite
|
||||||
|
{
|
||||||
|
Param ([string]$logstring)
|
||||||
|
Add-content -LiteralPath $Logfile -value $logstring
|
||||||
|
}
|
||||||
|
# Create new log directory:
|
||||||
|
New-Item -itemType Directory -Path $PSScriptRoot\..\logs\ -Name $logFolderName > $null
|
||||||
|
# Calculates the total size of the given directory in GB:
|
||||||
|
Write-Host "Inizialization in progress.."
|
||||||
|
$folderSizeInGB = "{0:N2} GB" -f ((Get-ChildItem $videoPath -Recurse | Measure-Object -Property Length -Sum -ErrorAction Stop).Sum / 1GB)
|
||||||
|
Clear-Host # Clears the upper message from the window
|
||||||
|
#############################################################################################################
|
||||||
|
# END - Testing and conversion preparations
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#############################################################################################################
|
||||||
|
# Main conversion process #
|
||||||
|
#############################################################################################################
|
||||||
|
Write-Host "Found $count videos with a total size of $folderSizeInGB - starting converter.." -ForegroundColor Cyan
|
||||||
|
Write-Host
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
|
||||||
|
foreach($video in $videos)
|
||||||
|
{
|
||||||
|
|
||||||
|
$video = $video.Replace("`"", "")
|
||||||
|
$inputFile = $videoPath + "\" + $video
|
||||||
|
|
||||||
|
# Get and check File info for codec and resolution, if it's already HEVC: - JSON query: (['media']['track'][1]['Format'])
|
||||||
|
$fileDetails = cmd /c $fileTester $inputFile --Output=JSON | ConvertFrom-Json
|
||||||
|
|
||||||
|
$codec = $fileDetails.media.track[1].Format
|
||||||
|
$reconvert = $false
|
||||||
|
|
||||||
|
$resolution_width = $fileDetails.media.track[1].Width
|
||||||
|
$resolution_height = $fileDetails.media.track[1].Height
|
||||||
|
|
||||||
|
if($resolution_width -gt '3840') # max resolution for x264 = 4096
|
||||||
|
{
|
||||||
|
if ($forceReconvertAllToMatchVRresolution)
|
||||||
|
{
|
||||||
|
$reconvert = $true
|
||||||
|
}
|
||||||
|
$new_resolution_width = '3840'
|
||||||
|
$new_resolution_height = $resolution_height / $resolution_width * $new_resolution_width
|
||||||
|
|
||||||
|
if ($new_resolution_height -gt '2048')
|
||||||
|
{
|
||||||
|
|
||||||
|
$new_resolution_width = $new_resolution_width / $new_resolution_height * '2048'
|
||||||
|
$new_resolution_height = '2048'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# If not already x264 or reconvert, converting video using NVEncC64:
|
||||||
|
if(($codec -eq "HEVC") -or ($reconvert))
|
||||||
|
{
|
||||||
|
# Configure new file naming:
|
||||||
|
if ($video -match "265")
|
||||||
|
{
|
||||||
|
$outputFile = $videoPath + "\" + $video.Replace("265", "264")
|
||||||
|
} else {
|
||||||
|
$outputFile = $videoPath + "\" + $video.Insert(($video.Length - 4), '-x264')
|
||||||
|
}
|
||||||
|
Write-Host "Analyzing video ($videoID of $count), starting convertion of number: $($convertedVideos + 1) please wait.." -ForegroundColor Magenta
|
||||||
|
Write-Host "$video `nto:`n$outputFile" -ForegroundColor White
|
||||||
|
Write-Host
|
||||||
|
|
||||||
|
# If the Subtitles should not be copied, delete the "--sub-copy 1,2" argument.
|
||||||
|
$arguments = "--input `"$inputFile`" --codec AVC --audio-copy 1,2,3,4 --sub-copy 1,2,3,4 --profile high --output-res $($new_resolution_width)x$($new_resolution_height) --output `"$outputFile`""
|
||||||
|
|
||||||
|
Start-Process $NVEncoder -ArgumentList $arguments -WindowStyle Minimized
|
||||||
|
|
||||||
|
$processName = 'NVEncC64'
|
||||||
|
Start-Sleep -Seconds 1
|
||||||
|
# Sets to use 3 cores (always set to one less core that your CPU has)
|
||||||
|
# 2 Cores = 3, 3 Cores = 7, 4 cores = 15, 5 cores = 31, 6 cores = 63
|
||||||
|
# Code to calculate for your CPU:
|
||||||
|
# $noOfCores = Get-WmiObject Win32_Processor | Measure-Object NumberOfLogicalProcessors -Sum
|
||||||
|
# $noOfCores.Sum = $noOfCores.Sum - 1
|
||||||
|
# [math]::Pow(2,$($noOfCores).Sum) - 1
|
||||||
|
#
|
||||||
|
$process = Get-Process $processName; $process.ProcessorAffinity=7
|
||||||
|
Start-Sleep -Seconds 2
|
||||||
|
# Sets priorty to High
|
||||||
|
# Values: High, AboveNormal, Normal, BelowNormal, Low
|
||||||
|
$process = Get-Process -Id $process.Id
|
||||||
|
$process.PriorityClass = 'High'
|
||||||
|
|
||||||
|
# Waits for process to complete
|
||||||
|
$processID = (Get-Process $processName).id
|
||||||
|
Wait-Process -Id $processID
|
||||||
|
|
||||||
|
|
||||||
|
if(Test-Path -LiteralPath $outputFile)
|
||||||
|
# Specifies a path to be tested. Unlike Path, the value of the LiteralPath parameter is used exactly as it is typed.
|
||||||
|
#No characters are interpreted as wildcard characters.
|
||||||
|
{
|
||||||
|
Write-Host "CONVERSION DONE! FILE: `"$outputFile`" FOUND" -ForegroundColor Yellow
|
||||||
|
Start-Sleep -Seconds 4
|
||||||
|
|
||||||
|
# Check if File is valid; the duration of video must be the same! (['media']['track'][0]['Duration']):
|
||||||
|
$fileDetails_new = cmd /c $fileTester $outputFile --Output=JSON | ConvertFrom-Json
|
||||||
|
|
||||||
|
# This code gets the duration and splits it in two parts, only the part before the "." is needed:
|
||||||
|
$StreamSize_old,$notused = $($fileDetails.media.track[0].Duration).split('.')
|
||||||
|
$StreamSize_new,$notused = $($fileDetails_new.media.track[0].Duration).split('.')
|
||||||
|
|
||||||
|
Write-Host
|
||||||
|
Write-Host "Old Duration was: $StreamSize_old `nnew Duration is: $StreamSize_new" -ForegroundColor White
|
||||||
|
Write-Host
|
||||||
|
|
||||||
|
if ($StreamSize_new -eq $StreamSize_old)
|
||||||
|
{
|
||||||
|
# Delete old video File!
|
||||||
|
Write-Host "Conversion Successful! - Deleting old file.."
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
Remove-Item -LiteralPath $inputFile
|
||||||
|
$convertedVideos = $convertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\..\logs\$logFolderName\successfully_converted.log"
|
||||||
|
LogWrite "$outputFile"
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
if (($StreamSize_new -eq $($StreamSize_old - 1)) -or ($($StreamSize_new - 1) -eq $StreamSize_old))
|
||||||
|
{
|
||||||
|
# Newly converted file does not match exactly the old duration. But diffrence its not more than 1 sec!
|
||||||
|
Write-Host "Conversion Done! - Streamsize is not exactly the same. But still OK - Ignoring!"
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
Remove-Item -LiteralPath $inputFile
|
||||||
|
$convertedVideos = $convertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\..\logs\$logFolderName\successfully_converted.log"
|
||||||
|
LogWrite "$outputFile"
|
||||||
|
|
||||||
|
} elseif (($StreamSize_new -ge $($StreamSize_old - 20)) -or ($($StreamSize_new - 20) -ge $StreamSize_old))
|
||||||
|
{
|
||||||
|
# New converted file has been converted but with up to max 20 seconds deviation!
|
||||||
|
Write-Host "Conversion Done! - But streamsize is not the same. - Please review!"
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
$review = $true
|
||||||
|
$convertedVideos = $convertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\..\logs\$logFolderName\review_needed.log"
|
||||||
|
LogWrite "$inputFile,$outputFile"
|
||||||
|
|
||||||
|
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
if ($forceReviewAll)
|
||||||
|
{
|
||||||
|
# Mark probably corrupted file for review
|
||||||
|
Write-Host "Conversion Failed! - Marked for review! because it is desired."
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
$review = $true
|
||||||
|
$convertedVideos = $convertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\..\logs\$logFolderName\review_needed.log"
|
||||||
|
LogWrite "$inputFile,$outputFile"
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
# Delete obviously corrupt File!
|
||||||
|
Write-Host "Conversion Failded! - Deleting new converted file.." -ForegroundColor Red
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
Remove-Item -LiteralPath $outputFile
|
||||||
|
$failedVideos = $failedVideos + 1
|
||||||
|
$notConvertedVideos = $notConvertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\..\logs\$logFolderName\error_during_conversion.log"
|
||||||
|
LogWrite "$inputFile,$StreamSize_new,$StreamSize_old,"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
# Alert if video doesn't need conversion:
|
||||||
|
Write-Host "Analyzing video ($videoID of $count) - skip" -ForegroundColor Magenta
|
||||||
|
Write-Host "$video is already in correct format!" -ForegroundColor Green
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
# Increments not converted video counter:
|
||||||
|
$notConvertedVideos = $notConvertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\..\logs\$logFolderName\skipped_files.log"
|
||||||
|
LogWrite "$inputFile"
|
||||||
|
}
|
||||||
|
# Increments video counter:
|
||||||
|
$videoID = $videoID + 1
|
||||||
|
$outputFile = "" # Resets the variable to nothing, that in case of an error the old file is not affected.
|
||||||
|
}
|
||||||
|
#############################################################################################################
|
||||||
|
# END - Main conversion process
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#############################################################################################################
|
||||||
|
# Evaluation part of the conversion script #
|
||||||
|
#############################################################################################################
|
||||||
|
if ($review)
|
||||||
|
{
|
||||||
|
$reviewFiles = Get-content -LiteralPath "$PSScriptRoot\..\logs\$logFolderName\review_needed.log" | Measure-Object –Line
|
||||||
|
$ReviewCount = $reviewFiles.Lines
|
||||||
|
|
||||||
|
Write-Host "There are $ReviewCount files to review.." -ForegroundColor Yellow
|
||||||
|
Read-Host -Prompt "Press Enter to start reviewing first file"
|
||||||
|
Write-Host
|
||||||
|
Write-Host "################################################################################################"
|
||||||
|
$review_count = 1
|
||||||
|
|
||||||
|
foreach($review_pair in Get-Content -LiteralPath "$PSScriptRoot\..\logs\$logFolderName\review_needed.log")
|
||||||
|
{
|
||||||
|
$oldFile,$newFile = $review_pair.split(',')
|
||||||
|
Write-Host "Playing $review_count converted file: $newFile"
|
||||||
|
Write-Host
|
||||||
|
|
||||||
|
# Starting VLC Player with the file to review
|
||||||
|
Start-Process $reviewPlayer -ArgumentList `"$newFile`"
|
||||||
|
Start-Sleep -Seconds 6
|
||||||
|
|
||||||
|
# Wait until player is closed.
|
||||||
|
$processID = (Get-Process "vlc").id
|
||||||
|
Wait-Process -Id $processID
|
||||||
|
|
||||||
|
$msg = 'Do you want to keep the newly converted file and delete the old? (N for deleting NEW-file) [Y/N]'
|
||||||
|
do {
|
||||||
|
$response = Read-Host -Prompt $msg
|
||||||
|
} until (($response -eq 'n') -or ($response -eq 'y'))
|
||||||
|
|
||||||
|
if ($response -eq 'y')
|
||||||
|
{
|
||||||
|
Write-Host "delete old file, keep newly converted.."
|
||||||
|
$to_delete = $oldFile
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
Write-Host "delete newly converted, keep old file"
|
||||||
|
$to_delete = $newFile
|
||||||
|
$failedVideos = $failedVideos + 1
|
||||||
|
$convertedVideos = $convertedVideos - 1
|
||||||
|
}
|
||||||
|
Write-Host "DELETED: $to_delete" -ForegroundColor Red
|
||||||
|
Remove-Item -LiteralPath $to_delete
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
Start-Sleep -Seconds 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Host "Final calculations are in progress.."
|
||||||
|
$folderSizeInGB2 = "{0:N2} GB" -f ((Get-ChildItem $videoPath -Recurse | Measure-Object -Property Length -Sum -ErrorAction Stop).Sum / 1GB)
|
||||||
|
if($notConvertedVideos -eq 0)
|
||||||
|
{
|
||||||
|
Write-Host "Finished converted $convertedVideos out of $count videos." -ForegroundColor Green
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
if($failedVideos -eq 0)
|
||||||
|
{
|
||||||
|
Write-Host "Finished converted $convertedVideos out of $count videos. - $notConvertedVideos where not converted because of already correct codec!" -ForegroundColor Green
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
Write-Host "Finished converted $convertedVideos out of $count videos. - $notConvertedVideos where not converted because error or already correct codec!!" -ForegroundColor Green
|
||||||
|
Write-Host "$failedVideos have failed!" -ForegroundColor Red
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Write-Host "Directory size before conversion: $folderSizeInGB"
|
||||||
|
Write-Host "Directory size after conversion: $folderSizeInGB2"
|
||||||
|
|
||||||
|
Read-Host -Prompt "Press Enter to exit"
|
||||||
|
#############################################################################################################
|
||||||
|
# END - conversion script
|
115
_extras/create_list_convert_HEVC_to_x264.ps1
Normal file
115
_extras/create_list_convert_HEVC_to_x264.ps1
Normal file
@ -0,0 +1,115 @@
|
|||||||
|
# Converts videos to HEVC for given path:
|
||||||
|
# https://github.com/rigaya/NVEnc/releases
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------
|
||||||
|
# Edit the $videoPath variable to point to your video-files folder:
|
||||||
|
$videoPath = 'Z:\__VR_SP_CONTENT\_data'
|
||||||
|
|
||||||
|
#-----------------------------------------------------------------------
|
||||||
|
$fileTester = "$PSScriptRoot\..\mediainfo.exe"
|
||||||
|
|
||||||
|
|
||||||
|
#############################################################################################################
|
||||||
|
# Testing and conversion preparations #
|
||||||
|
#############################################################################################################
|
||||||
|
|
||||||
|
# Get video list from provided path:
|
||||||
|
$videos = Get-ChildItem -LiteralPath $videoPath -Name -Recurse -Include ('*.mp4', '*.mkv') #('*.avi', '*.mp4', '*.mkv') - avi currently doesn't work.
|
||||||
|
|
||||||
|
# Instantiating used variables:
|
||||||
|
$videoID = 1
|
||||||
|
$convertedVideos = 0
|
||||||
|
$notConvertedVideos = 0
|
||||||
|
|
||||||
|
# Square brackets are used as wildcards in Powershell.
|
||||||
|
# To recognize this as normal text, the LogWite function uses the -LiteralPath parameter instead of the -Path parameter.
|
||||||
|
$logFolderName = $((Get-Date).tostring("yyyy-MM-dd") + ' - [preList - convert HEVC to x264 created at ' + (Get-Date).tostring("HH-mm") + ']')
|
||||||
|
$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:
|
||||||
|
Function LogWrite
|
||||||
|
{
|
||||||
|
Param ([string]$logstring)
|
||||||
|
Add-content -LiteralPath $Logfile -value $logstring
|
||||||
|
}
|
||||||
|
# Create new log directory:
|
||||||
|
New-Item -itemType Directory -Path $PSScriptRoot\ -Name $logFolderName > $null
|
||||||
|
|
||||||
|
Clear-Host # Clears the upper message from the window
|
||||||
|
#############################################################################################################
|
||||||
|
# END - Testing and conversion preparations
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#############################################################################################################
|
||||||
|
# Main conversion process #
|
||||||
|
#############################################################################################################
|
||||||
|
Write-Host "Found $count videos with a total size of $folderSizeInGB - starting generation of list.." -ForegroundColor Cyan
|
||||||
|
Write-Host
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
|
||||||
|
foreach($video in $videos)
|
||||||
|
{
|
||||||
|
|
||||||
|
$video = $video.Replace("`"", "")
|
||||||
|
$inputFile = $videoPath + "\" + $video
|
||||||
|
|
||||||
|
# Pre-file-check if "HEVC" exist in filename skip filechecking:
|
||||||
|
if ($video -match "HEVC")
|
||||||
|
{
|
||||||
|
$codec = "HEVC"
|
||||||
|
} else {
|
||||||
|
# Get and check File info for codec, if it's already HEVC: - JSON query: (['media']['track'][1]['Format'])
|
||||||
|
$fileDetails = cmd /c $fileTester $inputFile --Output=JSON | ConvertFrom-Json
|
||||||
|
$codec = $fileDetails.media.track[1].Format
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# If not already HEVC, convert video using NVEncC64:
|
||||||
|
if($codec -eq "HEVC")
|
||||||
|
{
|
||||||
|
# Configure new file naming:
|
||||||
|
if ($video -match "265")
|
||||||
|
{
|
||||||
|
$outputFile = $videoPath + "\" + $video.Replace("265", "264")
|
||||||
|
} else {
|
||||||
|
$outputFile = $videoPath + "\" + $video.Insert(($video.Length - 4), '-x264')
|
||||||
|
}
|
||||||
|
Write-Host "Analyzing video ($videoID of $count), needs conversion - number: $($convertedVideos + 1)" -ForegroundColor Magenta
|
||||||
|
Write-Host "$video `nto:`n$outputFile" -ForegroundColor White
|
||||||
|
Write-Host
|
||||||
|
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
$convertedVideos = $convertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\$logFolderName\needs_conversion.log"
|
||||||
|
LogWrite "$outputFile"
|
||||||
|
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
# Alert if video doesn't need conversion:
|
||||||
|
Write-Host "Analyzing video ($videoID of $count) - skip" -ForegroundColor Magenta
|
||||||
|
Write-Host "$video is already in correct format!" -ForegroundColor Green
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
# Increments not converted video counter:
|
||||||
|
$notConvertedVideos = $notConvertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\$logFolderName\already_correct_codec.log"
|
||||||
|
LogWrite "$inputFile"
|
||||||
|
}
|
||||||
|
# Increments video counter:
|
||||||
|
$videoID = $videoID + 1
|
||||||
|
$outputFile = "" # Resets the variable to nothing, that in case of an error the old file is not affected.
|
||||||
|
}
|
||||||
|
#############################################################################################################
|
||||||
|
|
||||||
|
Read-Host -Prompt "Press Enter to exit"
|
||||||
|
#############################################################################################################
|
||||||
|
# END - conversion script
|
4
_extras/ffmpeg/.gitignore
vendored
Normal file
4
_extras/ffmpeg/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# Ignore everything in this directory
|
||||||
|
*
|
||||||
|
# Except this file
|
||||||
|
!.gitignore
|
@ -4,9 +4,9 @@
|
|||||||
#-----------------------------------------------------------------------
|
#-----------------------------------------------------------------------
|
||||||
# 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:\1_movies\_main.movies\'
|
||||||
#$videoPath = 'M:\2_serien\_main.series\'
|
#$videoPath = 'M:\2_serien\_main.series\'
|
||||||
$videoPath = 'M:\3_dokus\'
|
#$videoPath = 'M:\3_dokus\'
|
||||||
|
|
||||||
#-----------------------------------------------------------------------
|
#-----------------------------------------------------------------------
|
||||||
# HEVC profiles: main, main10, main444
|
# HEVC profiles: main, main10, main444
|
||||||
@ -37,7 +37,7 @@ $notConvertedVideos = 0
|
|||||||
$failedVideos = 0
|
$failedVideos = 0
|
||||||
# Square brackets are used as wildcards in Powershell.
|
# Square brackets are used as wildcards in Powershell.
|
||||||
# To recognize this as normal text, the LogWite function uses the -LiteralPath parameter instead of the -Path parameter.
|
# To recognize this as normal text, the LogWite function uses the -LiteralPath parameter instead of the -Path parameter.
|
||||||
$logFolderName = $((Get-Date).tostring("dd-MM-yyyy") + ' - [run started at ' + (Get-Date).tostring("HH-mm") + ']')
|
$logFolderName = $((Get-Date).tostring("yyyy-MM-dd") + ' - [run started at ' + (Get-Date).tostring("HH-mm") + ']')
|
||||||
$count = $videos.Count
|
$count = $videos.Count
|
||||||
|
|
||||||
if($videos.Count -lt 1)
|
if($videos.Count -lt 1)
|
||||||
@ -107,7 +107,7 @@ foreach($video in $videos)
|
|||||||
Start-Process $NVEncoder -ArgumentList $arguments -WindowStyle Minimized
|
Start-Process $NVEncoder -ArgumentList $arguments -WindowStyle Minimized
|
||||||
|
|
||||||
$processName = 'NVEncC64'
|
$processName = 'NVEncC64'
|
||||||
Start-Sleep -Seconds 8
|
Start-Sleep -Seconds 1
|
||||||
# Sets to use 3 cores (always set to one less core that your CPU has)
|
# Sets to use 3 cores (always set to one less core that your CPU has)
|
||||||
# 2 Cores = 3, 3 Cores = 7, 4 cores = 15, 5 cores = 31, 6 cores = 63
|
# 2 Cores = 3, 3 Cores = 7, 4 cores = 15, 5 cores = 31, 6 cores = 63
|
||||||
# Code to calculate for your CPU:
|
# Code to calculate for your CPU:
|
||||||
@ -116,7 +116,7 @@ foreach($video in $videos)
|
|||||||
# [math]::Pow(2,$($noOfCores).Sum) - 1
|
# [math]::Pow(2,$($noOfCores).Sum) - 1
|
||||||
#
|
#
|
||||||
$process = Get-Process $processName; $process.ProcessorAffinity=7
|
$process = Get-Process $processName; $process.ProcessorAffinity=7
|
||||||
Start-Sleep -Seconds 8
|
Start-Sleep -Seconds 2
|
||||||
# Sets priorty to High
|
# Sets priorty to High
|
||||||
# Values: High, AboveNormal, Normal, BelowNormal, Low
|
# Values: High, AboveNormal, Normal, BelowNormal, Low
|
||||||
$process = Get-Process -Id $process.Id
|
$process = Get-Process -Id $process.Id
|
||||||
@ -159,14 +159,27 @@ foreach($video in $videos)
|
|||||||
{
|
{
|
||||||
if (($StreamSize_new -eq $($StreamSize_old - 1)) -or ($($StreamSize_new - 1) -eq $StreamSize_old))
|
if (($StreamSize_new -eq $($StreamSize_old - 1)) -or ($($StreamSize_new - 1) -eq $StreamSize_old))
|
||||||
{
|
{
|
||||||
# Newly converted file does not match exactly the old duration!
|
# Newly converted file does not match exactly the old duration. But diffrence its not more than 1 sec!
|
||||||
Write-Host "Conversion Done! - But streamsize is not exactly the same. - Please review!"
|
Write-Host "Conversion Done! - Streamsize is not exactly the same. But still OK - Ignoring!"
|
||||||
|
Write-Host
|
||||||
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
|
Remove-Item -LiteralPath $inputFile
|
||||||
|
$convertedVideos = $convertedVideos + 1
|
||||||
|
$Logfile = "$PSScriptRoot\logs\$logFolderName\successfully_converted.log"
|
||||||
|
LogWrite "$outputFile"
|
||||||
|
|
||||||
|
} elseif (($StreamSize_new -ge $($StreamSize_old - 20)) -or ($($StreamSize_new - 20) -ge $StreamSize_old))
|
||||||
|
{
|
||||||
|
# New converted file has been converted but with up to max 20 seconds deviation!
|
||||||
|
Write-Host "Conversion Done! - But streamsize is not the same. - Please review!"
|
||||||
Write-Host
|
Write-Host
|
||||||
Write-Host "------------------------------------------------------------------------------------------------"
|
Write-Host "------------------------------------------------------------------------------------------------"
|
||||||
$review = $true
|
$review = $true
|
||||||
$convertedVideos = $convertedVideos + 1
|
$convertedVideos = $convertedVideos + 1
|
||||||
$Logfile = "$PSScriptRoot\logs\$logFolderName\review_needed.log"
|
$Logfile = "$PSScriptRoot\logs\$logFolderName\review_needed.log"
|
||||||
LogWrite "$inputFile,$outputFile"
|
LogWrite "$inputFile,$outputFile"
|
||||||
|
|
||||||
|
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
if ($forceReviewAll)
|
if ($forceReviewAll)
|
||||||
|
Loading…
Reference in New Issue
Block a user