12 lines
199 B
Batchfile
12 lines
199 B
Batchfile
@echo off
|
|
REM MPV Video Player Startup
|
|
echo Starting MPV Video Player with Path Fix...
|
|
|
|
REM Add MPV to PATH
|
|
set PATH=C:\DriveIn\mpv;%PATH%
|
|
|
|
REM Start the video player
|
|
python mpv_main_fixed.py
|
|
|
|
pause
|