-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
40 lines (30 loc) · 900 Bytes
/
config.example.json
File metadata and controls
40 lines (30 loc) · 900 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
40
{
"_comment": "Example configuration file for whispr. Copy to config.json and adjust.",
"input_file": null,
"input_url": null,
"backend": "faster_whisper",
"fallback_backend": null,
"whisper_cpp_binary": "whisper",
"whisper_cpp_model": "models/ggml-base.bin",
"whisper_cpp_extra_args": [],
"faster_whisper_model": "base",
"faster_whisper_device": "cpu",
"faster_whisper_compute_type": "int8",
"openai_api_key": "${OPENAI_API_KEY}",
"openai_model": "whisper-1",
"language": null,
"chunk_duration_seconds": 600,
"workers": 2,
"temp_dir": null,
"output_formats": ["txt", "srt"],
"output_dir": "./output",
"output_prefix": "transcript",
"max_retries": 3,
"retry_base_delay": 1.0,
"retry_max_delay": 30.0,
"dry_run": false,
"debug": false,
"log_file": null,
"ytdlp_format": "bestaudio/best",
"ytdlp_output_template": "%(title)s.%(ext)s"
}