Advertisement
mohsentux

correct configs for youtube-dl

Apr 4th, 2022
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. # Prefer 1080p or lower resolutions
  2. -f bestvideo[ext=mp4][width<2000][height<=1200]+bestaudio[ext=m4a]/bestvideo[ext=webm][width<2000][height<=1200]+bestaudio[ext=webm]/bestvideo[width<2000][height<=1200]+bestaudio/best[width<2000][height<=1200]/best
  3.  
  4. --ignore-errors
  5. # --no-playlist
  6. --continue
  7. --no-overwrites
  8. --download-archive
  9.  
  10. # To also include album art (requires atomicparsley):
  11. --add-metadata --embed-thumbnail
  12.  
  13. --external-downloader aria2c --external-downloader-args '-c -j 8 -x 8 -s 8 -k 1M'
  14.  
  15. # Save in the folder you want
  16. -o "F:\youtube_videos\%(playlist_index)s-%(title)s.%(ext)s"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement