Files
claudetools/.gitignore
Mike Swanson a1e0442d8b Add radio show audio processor and post-show workflow
- Audio processor CLI tool with 6-stage pipeline: transcribe (faster-whisper GPU),
  diarize (pyannote), detect segments (multi-signal classifier), remove commercials,
  split segments, analyze content (Ollama)
- Post-show workflow doc for episode posts, forum threads, deep-dive blog posts
- Training plan for using 579-episode archive for voice profiles and commercial detection
- Successful test: 45min episode transcribed in 2:37 on RTX 5070 Ti
- Sample transcript output from S7E30 (March 2015)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-21 11:51:59 -07:00

70 lines
831 B
Plaintext

# Backups (local only - don't commit to repo)
backups/
# Local settings (machine-specific)
.claude/settings.local.json
# Temporary files
*.tmp
*.log
*.bak
# OS files
.DS_Store
Thumbs.db
desktop.ini
# IDE/Editor
.vscode/
.idea/
*.swp
*.swo
*~
# Python
__pycache__/
*.pyc
*.pyo
venv/
.env
# Node
node_modules/
.npm/
# Rust
target/
Cargo.lock
# Build outputs
dist/
build/
*.exe
*.dll
*.so
*.dylib
# ClaudeTools specific
.encryption-key
*.key
.pytest_cache/
.venv/
*.db
*.sqlite
logs/
.claude/tokens.json
.claude/context-recall-config.env
.claude/context-recall-config.env.backup
.claude/context-cache/
.claude/context-queue/
api/.env
# MCP Configuration (may contain secrets)
.mcp.json
Pictures/
.grepai/
# Radio processor
projects/radio-show/audio-processor/test-data/*.mp3
projects/radio-show/audio-processor/*.egg-info/