diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:37:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:37:42 +0000 |
commit | c7bab7c39fd51c0812f70020172766303191bc01 (patch) | |
tree | 56c05fbdd4fc47409d48ba318a4b621a7b0d299a /.gitignore | |
parent | Initial commit. (diff) | |
download | yt-dlp-c7bab7c39fd51c0812f70020172766303191bc01.tar.xz yt-dlp-c7bab7c39fd51c0812f70020172766303191bc01.zip |
Adding upstream version 2023.03.04.upstream/2023.03.04upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..507ba8c --- /dev/null +++ b/.gitignore @@ -0,0 +1,125 @@ +# Config +*.conf +cookies +*cookies.txt +.netrc + +# Downloaded +*.annotations.xml +*.aria2 +*.description +*.dump +*.frag +*.frag.aria2 +*.frag.urls +*.info.json +*.live_chat.json +*.meta +*.part* +*.tmp +*.temp +*.unknown_video +*.ytdl +.cache/ + +*.3gp +*.ape +*.ass +*.avi +*.desktop +*.f4v +*.flac +*.flv +*.gif +*.jpeg +*.jpg +*.m4a +*.m4v +*.mhtml +*.mkv +*.mov +*.mp3 +*.mp4 +*.mpga +*.oga +*.ogg +*.opus +*.png +*.sbv +*.srt +*.swf +*.swp +*.tt +*.ttml +*.url +*.vtt +*.wav +*.webloc +*.webm +*.webp + +# Allow config/media files in testdata +!test/** + +# Python +*.pyc +*.pyo +.pytest_cache +wine-py2exe/ +py2exe.log +build/ +dist/ +zip/ +tmp/ +venv/ +.venv/ +completions/ + +# Misc +*~ +*.DS_Store +*.kate-swp +MANIFEST +test/local_parameters.json +.coverage +cover/ +secrets/ +updates_key.pem +*.egg-info +.tox +*.class +*.isorted +*.stackdump + +# Generated +AUTHORS +README.txt +.mailmap +*.1 +*.bash-completion +*.fish +*.tar.gz +*.zsh +*.spec +test/testdata/sigs/player-*.js + +# Binary +/youtube-dl +/youtube-dlc +/yt-dlp +yt-dlp.zip +*.exe + +# Text Editor / IDE +.idea +*.iml +.vscode +*.sublime-* +*.code-workspace + +# Lazy extractors +*/extractor/lazy_extractors.py + +# Plugins +ytdlp_plugins/ +yt-dlp-plugins |