Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 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. -o ~/Videos/youtube-dl/'%(title)s.%(ext)s'
  18.  
  19. # Download YouTube playlist videos in separate directory indexed by video order in a playlist
  20. #-o ~/Videos/youtube-dl/'%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s'
  21.  
  22. # Force resume of partially downloaded files
  23. -c
  24.  
  25. # Continue on download errors, for example to skip unavailable videos in a playlist
  26. -i
  27.  
  28. # Use .netrc authentication data
  29. #--netrc
  30.  
  31. # Two factor
  32. --twofactor TWOFACTORTOKEN
  33.  
  34. # Video format code, see the "FORMAT SELECTION" for all the info
  35. --format mp4
  36.  
  37. # Download all available video formats
  38. #--all-formats
  39.  
  40. # Specify audio format: "best", "aac", "flac", "mp3", "m4a", "opus", "vorbis", or "wav"; "best" by default; No effect without -x
  41. --audio-format mp3
  42.  
  43. # Specify ffmpeg/avconv audio quality, insert a value between 0 (better) and 9 (worse) for VBR or a specific bitrate like 128K (default 5)
  44. #
  45. --audio-quality 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement