First commit of local Closed Caption App

This commit is contained in:
2025-08-05 15:17:40 -07:00
commit f4c3a024bd
21 changed files with 3023 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# Whisper Configuration
# For local Whisper, ensure whisper is installed via pip
WHISPER_MODEL=base # Options: tiny, base, small, medium, large
# Remote Whisper API (e.g., OpenAI Whisper API)
OPENAI_API_KEY=your_openai_api_key_here
# ElevenLabs Speech-to-Text API
ELEVENLABS_API_KEY=your_elevenlabs_api_key_here
# Audio Processing Configuration
# Audio threshold for silence detection (0.0-1.0, lower = more sensitive)
# 0.005 = Very sensitive, 0.01 = Default, 0.05 = Less sensitive
AUDIO_THRESHOLD=0.01
# Server Configuration
SERVER_PORT=3000