This commit is contained in:
XXXXRT666 2025-05-12 17:51:06 +01:00
parent c27d18dd23
commit a49d0e2d3c
2 changed files with 8 additions and 1 deletions

View File

@ -39,6 +39,13 @@ DownloadAndUnzip $G2PW_URL "GPT_SoVITS\text\G2PWModel"
Write-Host "[INFO] Download UVR5 model..."
DownloadAndUnzip $UVR5_URL "tools\uvr5\uvr5_weights"
Write-Host "[INFO] Downloading funasr..."
$funasrUrl = "https://huggingface.co/XXXXRT/GPT-SoVITS-Pretrained/resolve/main/funasr.zip"
$funasrZip = "$tmpDir\funasr.zip"
Invoke-WebRequest -Uri $funasrUrl -OutFile $funasrZip
Expand-Archive -Path $funasrZip -DestinationPath "$srcDir\tools\asr\models" -Force
Remove-Item $funasrZip
Write-Host "[INFO] Download ffmpeg..."
$ffUrl = "https://www.gyan.dev/ffmpeg/builds/ffmpeg-release-essentials.zip"
$ffZip = "$tmpDir\ffmpeg.zip"

View File

@ -20,4 +20,4 @@ jobs:
- name: Run Build and Upload Script
shell: pwsh
run: ./github/build-and-upload.ps1
run: ./github/build_windows_packages