.gitignore 1.2 KB

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