From 4b7e7016132d2b40119111beb73de37c498f637b Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 27 Aug 2025 03:01:00 +0300 Subject: [PATCH] Improve FFmpeg binary check output in Windows build Changed status messages for FFmpeg, ffprobe, and ffplay binary checks to use '[OK]' and '[ERROR]' prefixes for clearer log output in the Windows build workflow. --- .github/workflows/build-windows.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 366b4a7..a9607c6 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -124,9 +124,21 @@ jobs: $ffprobeExe = Join-Path $ffmpegBinPath "ffprobe.exe" $ffplayExe = Join-Path $ffmpegBinPath "ffplay.exe" - if (Test-Path $ffmpegExe) { Write-Host "✓ ffmpeg.exe found" } else { Write-Host "✗ ffmpeg.exe missing" } - if (Test-Path $ffprobeExe) { Write-Host "✓ ffprobe.exe found" } else { Write-Host "✗ ffprobe.exe missing" } - if (Test-Path $ffplayExe) { Write-Host "✓ ffplay.exe found" } else { Write-Host "✗ ffplay.exe missing" } + if (Test-Path $ffmpegExe) { + Write-Host "[OK] ffmpeg.exe found" + } else { + Write-Host "[ERROR] ffmpeg.exe missing" + } + if (Test-Path $ffprobeExe) { + Write-Host "[OK] ffprobe.exe found" + } else { + Write-Host "[ERROR] ffprobe.exe missing" + } + if (Test-Path $ffplayExe) { + Write-Host "[OK] ffplay.exe found" + } else { + Write-Host "[ERROR] ffplay.exe missing" + } } else { Write-Host "Error: Could not find FFmpeg directory after extraction" exit 1