Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. # Lines starting with # are comments
  2.  
  3. # Always extract audio
  4. #-x
  5.  
  6. # Do not copy the mtime
  7. --no-mtime
  8.  
  9. # Download only new videos from a playlist
  10. --download-archive ~/archive.txt
  11.  
  12. # Save all videos under Movies directory in your home directory
  13. #-o ~/Videos/youtube-dl/'%(title)s.%(ext)s'
  14.  
  15. # Download YouTube playlist videos in separate directory indexed by video order in a playlist
  16. -o ~/Videos/youtube-dl/'%(uploader)s/%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s'
  17.  
  18. # Download YouTube playlist videos in separate directory indexed by video order in a playlist
  19. #-o ~/Videos/youtube-dl/'%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s'
  20.  
  21. # Force resume of partially downloaded files
  22. -c
  23.  
  24. # Continue on download errors, for example to skip unavailable videos in a playlist
  25. -i
  26.  
  27. # Use .netrc authentication data
  28. #--netrc
  29.  
  30. # Two factor
  31. --twofactor TWOFACTORTOKEN
  32.  
  33. # Video format code, see the "FORMAT SELECTION" for all the info
  34. --format mp4
  35.  
  36. # Download all available video formats
  37. #--all-formats
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement