Advertisement
AleksiReede

yt-dlp-mp3-playlist

May 2nd, 2023 (edited)
1,530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.49 KB | None | 0 0
  1. #!/usr/bin/env bash
  2. ytdl_opts='-f 251 -ciw --progress -o "%(uploader)s-%(title)s.%(ext)s" --extract-audio --audio-quality 0 --audio-format mp3 --embed-thumbnail --windows-filenames --rm-cache-dir --add-metadata '
  3. locator="$(find /mnt -name ".playlist_identifier_file-0011" -print 2>/dev/null)"
  4. folder_location="$(dirname "$locator")"
  5. cd $folder_location
  6. yt-dlp $ytdl_opts https://youtube.com/playlist?list=PLdr-t0DmdueqUEfZFbFg2YZk03nP3NmHR
  7. touch $folder_location/.playlist_identifier_file-0011
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement