Advertisement
Guest User

Untitled

a guest
Jul 25th, 2018
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. 1. Download youtube-dl.exe and put it somewhere
  2. 2. In the same folder use Notepad to create a file named whatever.bat with the following content:
  3.  
  4. @echo off
  5. :start
  6. set "url="
  7. set /p url="Enter URL: "
  8. youtube-dl %url% -o "%%(url)s.%%(ext)s"
  9. GOTO start
  10.  
  11. 3. Run whatever.bat and enter the URL to download when prompted
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement