edinsuta/yt-dlp-batch

edit yt-dlp_Custom.bat

cisko99za opened this issue · 1 comments

i've try your yt-dlp_Custom.bat and work fine, but i need little edit ...
i need run bat file, put video link, see a full list available, choose my preferred format, put format like -f hls-1455 and download with yt-dlp and aria2c. example:
run bat
put video link
(with -F see all available format)
put my format like hls-1455
then start video download with --external-downloader aria2c

it possible that?

solved. i post here my bat for other user

@echo off
echo ================================================================================
echo.
set /p url="enter video url: "
echo %url%
echo.
yt-dlp -F "%url%"
echo.
set /p arguments="enter custom arguments: "
echo.
echo ================================================================================
echo.
yt-dlp -f %arguments% --external-downloader aria2c -o "download/%%(title)s.%%(ext)s" "%url%"
echo.
echo ================================================================================
echo.
echo done!