Script qobuz-dl windows

@echo off
:menu
echo -----------------
echo -- Download id --
echo -----------------
echo.
set /p id="Quel est l'id du download ?"

echo ----------------------
echo -- Download options --
echo ----------------------
echo.
echo 1.Label
echo 2.Artist (juste les albums)
echo 3.Artist (albums + EP)
echo 4.Album
echo 5.Playlist
echo 6.Mode interractif
echo q.Quitter
echo.
set /p reponse="Quel programme voulez-vous executer ?"

If /i "%reponse%"=="1" goto :Label
If /i "%reponse%"=="2" goto :Artist
If /i "%reponse%"=="3" goto :ArtistFull
If /i "%reponse%"=="4" goto :Album
If /i "%reponse%"=="5" goto :Playlist
If /i "%reponse%"=="6" goto :Mode
If /i "%reponse%"=="q" goto :fin

:Label
cls
call qobuz-dl dl -q 27 -e --folder-format "{artist} - {year} - {album}" https://play.qobuz.com/label/%id%
cls
goto :menu

:Album
cls
call qobuz-dl.exe dl -q 27 -e https://play.qobuz.com/album/%id%
cls
goto :menu

:Artist
cls
call qobuz-dl.exe dl -q 27 --embed-art --albums-only -s --folder-format "{year} - {album}" https://play.qobuz.com/artist/%id%
cls
goto :menu

:ArtistFull
cls
call qobuz-dl.exe dl -q 27 --embed-art --folder-format "{year} - {album}" https://play.qobuz.com/artist/%id%
cls
goto :menu

:Playlist
cls
call qobuz-dl.exe dl -q 27 -e https://play.qobuz.com/playlist/%id%
cls
goto :menu

:Mode
cls
call qobuz-dl fun -l 10
cls
goto :menu

:fin
exit