40 lines
1.5 KiB
PowerShell
40 lines
1.5 KiB
PowerShell
# From the current folder, make a powershell array that finds all files with the .flac extension and add them to a list
|
|
|
|
# Get all files with the .flac extension
|
|
$files = Get-ChildItem -Path . -Filter *.flac -Recurse
|
|
|
|
# Write-Host "Found" $files.Count "files"
|
|
|
|
# For each file, run ffprobe with json ouptut, and include it in a new list if it has a sample rate above 44100, and a bit depth above 16
|
|
|
|
<# This is the old way, use the new way below using -Parallel
|
|
foreach ($file in $files) {
|
|
$ffprobe = ffprobe -v quiet -print_format json -show_format -show_streams $file.FullName
|
|
$ffprobe = $ffprobe | ConvertFrom-Json
|
|
$stream = $ffprobe.streams | Where-Object {$_.codec_name -eq "flac"}
|
|
|
|
if ($stream.sample_rate -gt 44100 -or $stream.bits_per_raw_sample -gt 16) {
|
|
Write-Host $file.FullName
|
|
$hq += $file
|
|
}
|
|
}
|
|
#>
|
|
|
|
$hq = @()
|
|
$files | ForEach-Object -Parallel {
|
|
$ffprobe = ffprobe -v quiet -print_format json -show_format -show_streams $_.FullName
|
|
$ffprobe = $ffprobe | ConvertFrom-Json
|
|
$stream = $ffprobe.streams | Where-Object {$_.codec_name -eq "flac"}
|
|
|
|
if ($stream.sample_rate -gt 44100 -or $stream.bits_per_raw_sample -gt 16) {
|
|
Write-Host $_.FullName
|
|
$hq += $_
|
|
}
|
|
}
|
|
|
|
# Doesn't work, so use input redirection instead "script.ps1 *> input.txt" because of read host, or "(pwsh -c script.ps1) > hq.txt"
|
|
# Save each file in hq to a text file with its full path
|
|
# New-Item -Path . -Name hq.txt -ItemType File -Quiet
|
|
# foreach ($file in $hq) {
|
|
# $file.FullName | Out-File -FilePath hq.txt -Append
|
|
# } |