Add 41 transcript files and 31 summary files to version control. Previously excluded via .gitignore — now tracked for backup and portability. SRT subtitle files remain excluded (derivable from transcripts). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
38 lines
432 B
Plaintext
38 lines
432 B
Plaintext
# Audio files
|
|
audio/
|
|
*.mp3
|
|
*.wav
|
|
|
|
# Whisper models
|
|
models/
|
|
*.bin
|
|
|
|
# Manifest (machine-specific state)
|
|
manifest.json
|
|
|
|
# Credentials
|
|
.env
|
|
|
|
# SRT subtitles (generated, can be re-derived from transcripts)
|
|
*.srt
|
|
|
|
# Binaries (downloaded by setup_whisper.py)
|
|
whisper-bin/
|
|
ffmpeg-bin/
|
|
|
|
# Temp files
|
|
.whisper_bin_path
|
|
.ffmpeg_bin_path
|
|
|
|
# WAV cache (converted from MP3)
|
|
audio_wav/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
.venv_pdf/
|
|
|
|
# Logs
|
|
*.log
|