For the python environment and exe running on the windows side, please install Fluidsynth first:
$downloadUrl = "https://github.com/FluidSynth/fluidsynth/releases/download/v2.4.4/fluidsynth-2.4.4-win10-x64.zip"
$outputZip = "C:\tools\fluidsynth.zip"
$extractPath = "C:\tools"
if (!(Test-Path "C:\tools")) {
New-Item -ItemType Directory -Path "C:\tools"
}
Invoke-WebRequest -Uri $downloadUrl -OutFile $outputZip
Expand-Archive -Path $outputZip -DestinationPath $extractPath -Force
Remove-Item $outputZip
Write-Output "file downloaded to $extractPath"A midi playback system controlled by video stream image recognition🤏🪄