forked from ZauteKm/MusicPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
85 lines (85 loc) · 2.59 KB
/
app.json
File metadata and controls
85 lines (85 loc) · 2.59 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
{
"name": "VCMusicPlayer",
"description": "An Telegram Bot Maded By Zaute to Play Nonstop Radio/Music in Telegram Voice Chats",
"repository": "https://github.com/LushaiMusic/VCMusicPlayer",
"logo": "https://telegra.ph/file/a247cefef0c9fd6308ee2.jpg",
"keywords": [
"telegram",
"bot",
"voicechat",
"music",
"python",
"pyrogram",
"pytgcalls",
"tgcalls",
"voip"
],
"env": {
"API_ID": {
"description": "api_id part of your Telegram API Key from my.telegram.org/apps or @UseTGzKBot",
"required": true
},
"API_HASH": {
"description": "api_hash part of your Telegram API Key from my.telegram.org/apps or @UseTGzKBot",
"required": true
},
"BOT_TOKEN": {
"description": "Bot token of Bot, get from @Botfather",
"required": true
},
"ARQ_API": {
"description": "get it for free from @ARQRobot",
"required": false
},
"SESSION_STRING": {
"description": "Session string, read the README to learn how to export it with Pyrogram",
"required": true
},
"CHAT": {
"description": "ID of Channel or Group where the Bot plays Music. Ex: -1001173263645",
"required": true
},
"LOG_GROUP": {
"description": "ID of the group to send playlist If CHAT is a Group, if channel thenleave blank. Ex: -1001173263645",
"required": false
},
"ADMINS": {
"description": "ID of Users who can use Admin commands(for multiple users seperated by space)",
"required": true
},
"ADMIN_ONLY": {
"description": "Pass 'Y' If you want to make /play and /dplay commands only for admins of CHAT. By default 'N' /play and /dplay is available for all.",
"value": "N",
"required": false
},
"MAXIMUM_DURATION": {
"description": "Maximum duration of song to be played using /play or /dplay",
"value": "15",
"required": false
},
"STREAM_URL": {
"description": "URL of Radio station or Youtube live video url to stream with /radio command",
"value": "https://youtu.be/zcrUCvBD16k",
"required": false
},
"REPLY_MESSAGE": {
"description": "A reply message to those who message the USER account in PM. Make it blank if you do not need this feature.",
"value": "Hello, I am a bot to play music, not havimg time to chat with you.",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
]
}