Skip to content

Instantly share code, notes, and snippets.

@owhs
Created April 20, 2024 20:37
Show Gist options
  • Select an option

  • Save owhs/1e8360fa27b856fbcfe8f99602151b00 to your computer and use it in GitHub Desktop.

Select an option

Save owhs/1e8360fa27b856fbcfe8f99602151b00 to your computer and use it in GitHub Desktop.
@echo off
:start
set /p folder="Enter folder name: "
set /p url="Enter URL: "
mkdir "%folder%" 2>nul
cd "%folder%" || exit /b
yt-dlp --skip-download --sub-langs "en" --write-auto-subs --match-filter "title ~= (?i)pok[eé]mon" "%url%"
cd ..
echo Done!
echo.
goto start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment