mirror of
https://github.com/Rushilwiz/knights-path.git
synced 2025-04-03 20:10:16 -04:00
14 lines
426 B
Batchfile
14 lines
426 B
Batchfile
@echo off
|
|
set "file=C:\Users\Rushil Umaretiya\Desktop\Knight's Path\Testing\Music\KP Music.mp3"
|
|
( echo Set Sound = CreateObject("WMPlayer.OCX.7"^)
|
|
echo Sound.URL = "%file%"
|
|
echo Sound.Controls.play
|
|
echo do while Sound.currentmedia.duration = 0
|
|
echo wscript.sleep 100
|
|
echo loop
|
|
echo wscript.sleep (int(Sound.currentmedia.duration^)+1^)*1000) >sound.vbs
|
|
start /min sound.vbs
|
|
pause
|
|
taskkill /f /im wmplayer
|
|
pause
|
|
exit |