-
Notifications
You must be signed in to change notification settings - Fork 65
/
config_default.json
77 lines (77 loc) · 1.92 KB
/
config_default.json
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
{
"general": {
"language": "en",
"send_channel_messages": true,
"cache_file_name": "TTMediaBotCache.dat",
"blocked_commands": [],
"delete_uploaded_files_after": 300,
"time_format": "%H:%M"
},
"sound_devices": {
"output_device": 0,
"input_device": 0
},
"player": {
"default_volume": 50,
"max_volume": 100,
"volume_fading": true,
"volume_fading_interval": 0.025,
"seek_step": 5,
"player_options": {}
},
"teamtalk": {
"hostname": "localhost",
"tcp_port": 10333,
"udp_port": 10333,
"encrypted": false,
"nickname": "TTMediaBot",
"status": "",
"gender": "n",
"username": "",
"password": "",
"channel": "/",
"channel_password": "",
"license_name": "",
"license_key": "",
"reconnection_attempts": -1,
"reconnection_timeout": 10,
"users": {
"admins": [
"admin"
],
"banned_users": []
},
"event_handling": {
"load_event_handlers": false,
"event_handlers_file_name": "event_handlers.py"
}
},
"services": {
"default_service": "vk",
"vk": {
"enabled": true,
"token": ""
},
"yam": {
"enabled": true,
"token": ""
},
"yt": {
"enabled": true
}
},
"logger": {
"log": true,
"level": "INFO",
"format": "%(levelname)s [%(asctime)s]: %(message)s in %(threadName)s file: %(filename)s line %(lineno)d function %(funcName)s",
"mode": "FILE",
"file_name": "TTMediaBot.log",
"max_file_size": 0,
"backup_count": 0
},
"shortening": {
"shorten_links": false,
"service": "clckru",
"service_params": {}
}
}