.gitignore 1.2 KB

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