andly654321

yt downloader

Jul 20th, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. @echo off
  2. title youtube downloader
  3. cls
  4.  
  5. :download
  6. echo Please select a video to download
  7. set "site="
  8. set /p "site= Site Link> "
  9. If not defined cls & goto download
  10. echo mp3 or mp4
  11. set /p choice=
  12. if %choice% == mp4 goto vid
  13. if %choice% == mp3 goto song
  14.  
  15. :vid
  16. "C:\Users\Andly\Documents\yt downloader\downloader.exe" %site%
  17. exit
  18.  
  19. :song
  20. "C:\Users\Andly\Documents\yt downloader\downloader.exe" %site% -x --audio-format "mp3" --audio-quality 3 --ffmpeg-location "C:\Users\Andly\Documents\yt downloader\ffmpeg\bin"
  21. exit
Add Comment
Please, Sign In to add comment