.gitignore 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. # Config
  2. *.conf
  3. cookies
  4. *cookies.txt
  5. .netrc
  6. # Downloaded
  7. *.annotations.xml
  8. *.aria2
  9. *.description
  10. *.dump
  11. *.frag
  12. *.frag.aria2
  13. *.frag.urls
  14. *.info.json
  15. *.live_chat.json
  16. *.meta
  17. *.part*
  18. *.tmp
  19. *.temp
  20. *.unknown_video
  21. *.ytdl
  22. .cache/
  23. *.3gp
  24. *.ape
  25. *.ass
  26. *.avi
  27. *.desktop
  28. *.f4v
  29. *.flac
  30. *.flv
  31. *.gif
  32. *.jpeg
  33. *.jpg
  34. *.m4a
  35. *.m4v
  36. *.mhtml
  37. *.mkv
  38. *.mov
  39. *.mp3
  40. *.mp4
  41. *.mpga
  42. *.oga
  43. *.ogg
  44. *.opus
  45. *.png
  46. *.sbv
  47. *.srt
  48. *.swf
  49. *.swp
  50. *.tt
  51. *.ttml
  52. *.url
  53. *.vtt
  54. *.wav
  55. *.webloc
  56. *.webm
  57. *.webp
  58. # Allow config/media files in testdata
  59. !test/**
  60. # Python
  61. *.pyc
  62. *.pyo
  63. .pytest_cache
  64. wine-py2exe/
  65. py2exe.log
  66. build/
  67. dist/
  68. zip/
  69. tmp/
  70. venv/
  71. .venv/
  72. completions/
  73. # Misc
  74. *~
  75. *.DS_Store
  76. *.kate-swp
  77. MANIFEST
  78. test/local_parameters.json
  79. .coverage
  80. cover/
  81. secrets/
  82. updates_key.pem
  83. *.egg-info
  84. .tox
  85. *.class
  86. *.isorted
  87. *.stackdump
  88. # Generated
  89. AUTHORS
  90. README.txt
  91. .mailmap
  92. *.1
  93. *.bash-completion
  94. *.fish
  95. *.tar.gz
  96. *.zsh
  97. *.spec
  98. test/testdata/sigs/player-*.js
  99. # Binary
  100. /youtube-dl
  101. /youtube-dlc
  102. /yt-dlp
  103. yt-dlp.zip
  104. *.exe
  105. # Text Editor / IDE
  106. .idea
  107. *.iml
  108. .vscode
  109. *.sublime-*
  110. *.code-workspace
  111. # Lazy extractors
  112. */extractor/lazy_extractors.py
  113. # Plugins
  114. ytdlp_plugins/
  115. yt-dlp-plugins