- Ignore all common video formats (mp4, avi, mov, webm, etc.) - Ignore audio files (mp3, wav, aac, flac, etc.) - Ignore generated images (jpg, png, gif, etc.) - Ignore FFmpeg and MoviePy logs/cache - Protect against committing sensitive media files
106 lines
939 B
Plaintext
106 lines
939 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
cover/
|
|
|
|
# Virtual environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Video files and artifacts
|
|
*.mp4
|
|
*.avi
|
|
*.mov
|
|
*.webm
|
|
*.mkv
|
|
*.flv
|
|
*.m4v
|
|
*.3gp
|
|
@artifacts/
|
|
temp_videos/
|
|
temp_audio/
|
|
output_videos/
|
|
output_audio/
|
|
|
|
# Audio files
|
|
*.mp3
|
|
*.wav
|
|
*.aac
|
|
*.flac
|
|
*.ogg
|
|
*.m4a
|
|
*.wma
|
|
|
|
# Image files (generated)
|
|
*.jpg
|
|
*.jpeg
|
|
*.png
|
|
*.gif
|
|
*.bmp
|
|
*.tiff
|
|
*.webp
|
|
|
|
# FFmpeg logs
|
|
ffmpeg*.log
|
|
ffprobe*.log
|
|
|
|
# MoviePy cache
|
|
.moviepy/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db |