-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathconfig.ini
More file actions
executable file
·48 lines (33 loc) · 1.15 KB
/
Copy pathconfig.ini
File metadata and controls
executable file
·48 lines (33 loc) · 1.15 KB
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
40
41
42
43
44
45
46
47
48
# Main configuration file
[streamers]
# List of streamers, comma-separated
streamers = theprimeagen, hasanabi
[general]
# Time in seconds to wait between checks if a streamer is offline
retry_delay = 120
[clipception]
enabled = true
# Duration of clips in seconds
clip_duration = 60
# Generate a 9:16 shorts variant for each extracted clip
shorts_format = false
# Default number of clips to generate per video
num_clips = 10
[clipception.transcription]
# cuda, cpu
device = cuda
# Whisper model size (tiny, base, small, medium, large, turbo)
# https://github.com/openai/whisper?tab=readme-ov-file#available-models-and-languages
model_size = base
# Transcription engine (faster-whisper, whisper)
engine = faster-whisper
# Transcription language (ISO language code, e.g. en, fr, de, etc.)
language = en
# Clean up temporary WAV files after transcription
cleanup_wav = false
[clipception.llm]
# OpenRouter LLM model (openai/o3, openai/gpt-4.1, deepseek/deepseek-chat, deepseek/deepseek-chat:free, google/gemini-2.5-pro-preview-03-25)
model_name = deepseek/deepseek-v3.2-exp
# Lower temperature for more structured output (0-1)
temperature = 0.7
max_tokens = 4000