-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
35 lines (25 loc) · 918 Bytes
/
.env.example
File metadata and controls
35 lines (25 loc) · 918 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
# podcli Configuration
# Whisper model size: tiny, base, small, medium, large
WHISPER_MODEL=base
# Device for Whisper: cpu, cuda, auto
WHISPER_DEVICE=auto
# FFmpeg paths (leave blank to use system defaults)
FFMPEG_PATH=
FFPROBE_PATH=
# Python path (leave blank to auto-detect venv)
PYTHON_PATH=
# Working directory (defaults to .podcli/ in project root)
PODCLI_HOME=
# HuggingFace token for speaker diarization (pyannote)
# 1. Accept terms: https://huggingface.co/pyannote/speaker-diarization-3.1
# 2. Create token (Read permission): https://huggingface.co/settings/tokens
HF_TOKEN=
# Output quality: low, medium, high, max
# low=fast/small, high=great quality (default), max=near-lossless
PODCLI_QUALITY=high
# Transition QA/autofix passes (0=off, 1-2 allowed; renderer hard-caps at 2)
PODCLI_TRANSITION_AUTOFIX_PASSES=2
PORT=3847 # Web UI port
# Logging
LOG_LEVEL=info
DEBUG=false