-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (32 loc) · 876 Bytes
/
.env.example
File metadata and controls
39 lines (32 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Database settings
DB_TYPE=sqlite
DB_NAME=video_metadata.db
# For PostgreSQL or MySQL
# DB_USER=username
# DB_PASSWORD=password
# DB_HOST=localhost
# DB_PORT=5432
# API Keys
DEEPSEEK_API_KEY=your_deepseek_api_key
# DEEPSEEK_API_BASE=https://api.deepseek.com # Optional custom API base URL
# DEEPSEEK_MODEL=deepseek-coder # Model name
TMDB_API_KEY=your_tmdb_api_key
OMDB_API_KEY=your_omdb_api_key
# Paths to external tools (if not in PATH)
# FFMPEG_PATH=/usr/local/bin/ffmpeg
# FFPROBE_PATH=/usr/local/bin/ffprobe
# CCEXTRACTOR_PATH=/usr/local/bin/ccextractor
# TESSERACT_CMD=/usr/local/bin/tesseract
# Subtitle extraction settings
DEFAULT_SUBTITLE_FORMAT=srt
EXTRACT_HARDCODED_SUBTITLES=false
OCR_FRAME_INTERVAL=1.0
OCR_LANGUAGE=eng
# Output settings
OUTPUT_DIR=output
# Logging settings
LOG_LEVEL=INFO
LOG_FILE=app.log
# API settings
API_HOST=0.0.0.0
API_PORT=8000