generated from thinkode/modelRepository
15 lines
556 B
Batchfile
15 lines
556 B
Batchfile
@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
|
|
pip install tokenizers
|
|
pip install tiktoken
|
|
pip install numba
|
|
echo "Building the standalone program..."
|
|
pyinstaller --onefile --add-data "whisper/assets;whisper/assets" audioTranscription.py
|