Initial commit and v1.0

This commit is contained in:
2025-04-21 13:41:19 +02:00
commit cdcb0b9b3c
53 changed files with 6263 additions and 0 deletions

11
build.bat Normal file
View File

@@ -0,0 +1,11 @@
@REM This script aims to build the audioSeparator software for dubstudio
@echo off
echo "Preparing environment to build 'audioSeparator' for dubstudio"
echo "Output file will be stored in dist/audioSeparator.exe"
echo "NOTE : For building this program, you must have installed python 3.12.5 and pip 24.3.1"
echo "Preparing environment..."
pip install pyinstaller
echo "Building the standalone program..."
pyinstaller --onefile --hidden-import=numpy.core.multiarray --add-data "demucs/remote;demucs/remote" audioSeparator.py