.gitignore 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. *.lrc
  35. *.m4a
  36. *.m4v
  37. *.mhtml
  38. *.mkv
  39. *.mov
  40. *.mp3
  41. *.mp4
  42. *.mpg
  43. *.mpga
  44. *.oga
  45. *.ogg
  46. *.opus
  47. *.png
  48. *.sbv
  49. *.srt
  50. *.ssa
  51. *.swf
  52. *.tt
  53. *.ttml
  54. *.url
  55. *.vtt
  56. *.wav
  57. *.webloc
  58. *.webm
  59. *.webp
  60. # Allow config/media files in testdata
  61. !test/**
  62. # Python
  63. *.pyc
  64. *.pyo
  65. .*_cache
  66. wine-py2exe/
  67. py2exe.log
  68. build/
  69. dist/
  70. zip/
  71. tmp/
  72. venv/
  73. .venv/
  74. completions/
  75. # Misc
  76. *~
  77. *.DS_Store
  78. *.kate-swp
  79. MANIFEST
  80. test/local_parameters.json
  81. .coverage
  82. cover/
  83. secrets/
  84. updates_key.pem
  85. *.egg-info
  86. .tox
  87. *.class
  88. *.isorted
  89. *.stackdump
  90. # Generated
  91. AUTHORS
  92. README.txt
  93. .mailmap
  94. *.1
  95. *.bash-completion
  96. *.fish
  97. *.tar.gz
  98. *.zsh
  99. *.spec
  100. test/testdata/sigs/player-*.js
  101. # Binary
  102. /youtube-dl
  103. /youtube-dlc
  104. /yt-dlp
  105. yt-dlp.zip
  106. *.exe
  107. # Text Editor / IDE
  108. .idea
  109. *.iml
  110. .vscode
  111. *.sublime-*
  112. *.code-workspace
  113. *.swp
  114. # Lazy extractors
  115. */extractor/lazy_extractors.py
  116. # Plugins
  117. ytdlp_plugins/
  118. yt-dlp-plugins