Add local Suno FLAC processing workflow

This commit is contained in:
DESKTOP-KSVGT20\shkim
2026-05-01 17:49:41 +09:00
parent 513db59a53
commit d19d93db3a
4 changed files with 332 additions and 4 deletions
+18
View File
@@ -0,0 +1,18 @@
$ErrorActionPreference = "Stop"
$manifest = Join-Path $env:USERPROFILE "Downloads\suno-library-*.manifest.json"
$latest = Get-ChildItem -Path $manifest -File -ErrorAction SilentlyContinue |
Sort-Object LastWriteTime -Descending |
Select-Object -First 1
if (-not $latest) {
Write-Host "Downloads 폴더에서 suno-library-*.manifest.json 을 찾지 못했어."
Write-Host "Tampermonkey 패널에서 라이브러리 일괄 다운로드를 먼저 눌러줘."
Read-Host "Enter를 누르면 닫힘"
exit 1
}
& "$PSScriptRoot\process-suno-library.ps1" -ManifestPath $latest.FullName -OutputRoot "\\VaultOfData\AKAMedia\음악\처리됨\SUNO"
Write-Host ""
Read-Host "Enter를 누르면 닫힘"