Advertisement
Guest User

Untitled

a guest
Jul 8th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. # Lines starting with # are comments
  2.  
  3. # Always download the best format (This SHOULD be the default but it was not working unless I specified it)
  4. -f bestvideo+bestaudio/best
  5. --max-filesize 128G
  6.  
  7. # Ignore Errors and continue downloading
  8. -i
  9.  
  10. # URLs to Download
  11. -a urls.txt
  12.  
  13. # Output Directory
  14. -o ./Downloads/%(extractor)s_%(id)s.%(ext)s
  15.  
  16. # Archive Location
  17. --download-archive archive.txt
  18.  
  19. # Maintain Uniform Merge Format
  20. --prefer-ffmpeg
  21. --merge-output-format mkv
  22.  
  23. # Write All Subs to VTT
  24. --all-subs
  25. --write-sub
  26. --convert-subs vtt
  27.  
  28. # Metadata
  29. --add-metadata
  30. # Backup metadata file incase the database ever becomes corrupted
  31. --write-info-json
  32.  
  33. # Thumbnail
  34. --write-thumbnail
  35.  
  36. # Debug
  37. # --no-warnings
  38. # --write-pages
  39. -v
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement