9 lines
310 B
Batchfile
9 lines
310 B
Batchfile
@echo off
|
|
REM 1. Activate the miniconda environment
|
|
call "C:\Users\tigeren\miniconda3\Scripts\activate.bat" "C:\Users\tigeren\miniconda3"
|
|
|
|
REM 2. Run the python script and pass all arguments (%*)
|
|
python "C:\Dev\videocut\cut.py" %*
|
|
|
|
:: 3. Keep the window open so you can see any print statements or errors
|
|
pause |