Advertisement
J2897

YouTube to MP3

Jun 17th, 2018
518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.02 KB | None | 0 0
  1. @echo OFF
  2. pushd "%~dp0"
  3. setlocal
  4. cls
  5.  
  6. REM https://github.com/rg3/youtube-dl/blob/master/README.md#readme
  7. REM https://www.slashgeek.net/2016/06/24/5-youtube-dl-tips-might-not-know/
  8.  
  9. set "TARGET=%USERPROFILE%\Desktop\Music"
  10.  
  11. set "VID_URL=https://www.youtube.com/watch?v=9WUoT6GVtXI"
  12. ::set "YT_PLAYLIST_URL=https://www.youtube.com/playlist?list=PLHJlC_5EPJgnV3fpzmbxONT5r5hQcdGsb"
  13.  
  14. set "YTDL=%USERPROFILE%\Programs\youtube-dl.exe"
  15. set "FFMPEG=%USERPROFILE%\Programs\ffmpeg\bin\ffmpeg.exe"
  16.  
  17. REM Download only the MP3 audio track from a YouTube video.
  18. %YTDL% --ffmpeg-location %FFMPEG% --prefer-insecure --extract-audio --audio-format mp3 -o "%TARGET%\%%(title)s.%%(ext)s" "%VID_URL%" --restrict-filenames
  19.  
  20. REM Download YouTube playlist videos in separate directory indexed by video order in a playlist.
  21. ::%YTDL% --ffmpeg-location %FFMPEG% --prefer-insecure --extract-audio --audio-format mp3 -o "%TARGET%\%%(playlist)s\%%(playlist_index)s - %%(title)s.%%(ext)s" "%YT_PLAYLIST_URL%" --restrict-filenames
  22.  
  23. :End
  24. endlocal
  25. popd
  26. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement