You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -87,7 +97,13 @@ if errorlevel 1 echo Note: could not pre-seed MCP_Apply (FL Piano roll scripts
87
97
88
98
echo.
89
99
echo [4/4] Checking loopMIDI ports...
90
-
python -c "import mido; names=set(mido.get_output_names())|set(mido.get_input_names()); req=('FLStudioPilot RX','FLStudioPilot TX'); missing=[n for n in req if not any(n.lower() in x.lower() for x in names)]; print(' All required ports present.') if not missing else print(' MISSING ports: %s -- create them in loopMIDI.' % missing)"
100
+
python -c "import mido"2>nul
101
+
iferrorlevel1 (
102
+
echo^(Automated port check skipped: 'mido' module not in global environment.^)
103
+
echo If using pipx, please manually ensure you have created the required loopMIDI ports.
104
+
) else (
105
+
python -c "import mido; names=set(mido.get_output_names())|set(mido.get_input_names()); req=('FLStudioPilot RX','FLStudioPilot TX'); missing=[n for n in req if not any(n.lower() in x.lower() for x in names)]; print(' All required ports present.') if not missing else print(' MISSING ports: %s -- create them in loopMIDI.' % missing)"
0 commit comments