-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.example.json
More file actions
87 lines (87 loc) · 1.79 KB
/
Copy pathsettings.example.json
File metadata and controls
87 lines (87 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"app": {
"port": 7001,
"keys": "YOUR_APP_KEYS_HERE",
"nodeEnv": "production",
"timezone": "Asia/Shanghai"
},
"http": {
"port": 7080,
"httpsPort": 7443
},
"database": {
"host": "postgres",
"port": 5432,
"username": "postgres",
"password": "YOUR_DB_PASSWORD_HERE",
"database": "streamerhelper",
"ssl": false
},
"redis": {
"host": "redis",
"port": 6379,
"password": "",
"db": 0
},
"s3": {
"endpoint": "http://minio:7090",
"publicEndpoint": "http://localhost:7090",
"region": "us-east-1",
"accessKey": "minioadmin",
"secretKey": "YOUR_S3_SECRET_HERE",
"bucket": "streamerhelper-archive"
},
"minio": {
"consolePort": 7091,
"apiPort": 7090
},
"recorder": {
"segmentDuration": 10,
"cacheMaxSegments": 3,
"heartbeatInterval": 5,
"heartbeatTimeout": 10,
"maxRecordingTime": 86400
},
"poller": {
"checkInterval": 60,
"totalInstances": 1,
"concurrency": 5
},
"upload": {
"defaultTid": 171,
"defaultTitleTemplate": "{主播名}的直播录像 {日期}"
},
"asr": {
"enabled": true,
"provider": "aliyun",
"apiKey": "",
"apiKeyEnv": "DASHSCOPE_API_KEY",
"baseUrl": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"model": "qwen3-asr-flash",
"language": "zh-CN",
"chunkSeconds": 240,
"concurrency": 1,
"transcribeRecordings": true
},
"platforms": {
"douyin": {}
},
"notice": {
"enabled": false,
"appName": "StreamerHelper",
"maxContentLength": 4000,
"logger": {
"enabled": true,
"level": "error",
"fatigueSeconds": 300
},
"channels": {
"serverChan": {
"enabled": false,
"sendKey": "",
"endpoint": "",
"timeoutMs": 10000
}
}
}
}