-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.py
80 lines (68 loc) · 2.26 KB
/
constants.py
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
################################################################################
# Botに関する設定
################################################################################
BOT_USER_ID = 1105880759857860709
GITHUB_REPOSITORY_URL = 'https://github.com/mimaraka/mashiro'
OPENAI_AVAILABLE_GUILDS = [
732902508787269655, # Mimaraka server
1134922279051075724, # Kochiyoko server
733998377074688050, # RRUM server
911795089355964438, # BlueArchive OtoMAD server
]
# ローディングアイコンの絵文字ID
EMOJI_ID_LOADING = 1154011417029128242
################################################################################
# その他の定数
################################################################################
# URLの正規表現
RE_PATTERN_URL = r'^https?://[\w/:%#\$&\?\(\)~\.=\+\-]+'
RE_PATTERN_URL_NICONICO = r'^(https?://)?(www\.|sp\.)?(nicovideo\.jp/watch|nico\.ms)/sm\d+'
FAVICON = {
}
# yt_dlp
YTDL_OPTIONS = {
'format': 'ba/b*[acodec!=none]/b*',
'restrictfilenames': True,
'noplaylist': True,
'nocheckcertificate': True,
'ignoreerrors': True,
'logtostderr': False,
'quiet': False,
'no_warnings': True,
'default_search': 'auto', # 非URLのテキストが投げられたときにキーワード検索をしてくれる
'source_address': '0.0.0.0', # bind to ipv4 since ipv6 addresses cause issues sometimes
# 'usenetrc': True,
# 'netrc_location': './.netrc',
'http_headers': {
'Accept-Language': 'ja-JP'
}
}
FFMPEG_OPTIONS = {
'before_options': '-reconnect 1 -reconnect_streamed 1 -reconnect_at_eof 1 -reconnect_delay_max 3',
'options': '-vn',
}
MIMETYPES_IMAGE = ['image/png', 'image/pjpeg', 'image/jpeg', 'image/x-icon', 'image/bmp']
MIMETYPES_FFMPEG = [
'audio/aac',
'audio/basic',
'audio/flac',
'audio/mpeg',
'audio/ogg',
'audio/x-aiff',
'audio/x-ms-wma',
'audio/wav',
'audio/x-wav',
'audio/vnd.qcelp',
'audio/x-pn-realaudio',
'audio/x-twinvq',
'video/quicktime',
'video/mp4',
'video/mpeg',
'video/vnd.rn-realvideo',
'video/vnd.vivo',
'video/wavelet',
'video/webm',
'video/x-flv',
'video/x-ms-asf',
'video/x-msvideo'
]