This repository was archived by the owner on Apr 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
67 lines (67 loc) · 2.09 KB
/
app.json
File metadata and controls
67 lines (67 loc) · 2.09 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
{
"name": "Telegram Video Player Bot",
"description": "An Telegram Bot By @SLBotsOfficial To Stream Videos in Voice Chat",
"repository": "https://github.com/TR-TECH-GUIDE/VideoPlayerBot",
"logo": "https://telegra.ph/file/a3f20392287e674650c2b.jpg",
"stack": "container",
"keywords": [
"telegram",
"voicechat",
"bot",
"video",
"player",
"python",
"pyrogram",
"pytgcalls",
"videoplayer"
],
"env": {
"API_ID": {
"description": "User Account Telegram API_ID get it from my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "User Account Telegram API_HASH get it from my.telegram.org/apps",
"required": true
},
"BOT_TOKEN": {
"description": "Your Telegram Bot Token, get it from @Botfather",
"required": true
},
"BOT_USERNAME": {
"description": "Your Telegram Bot Username without @, get it from @Botfather",
"required": true
},
"SESSION_STRING": {
"description": "Pyrogram Session String of User Account, get it from https://replit.com/@PDTharukRenuja/Pyrogram-String-Session",
"required": true
},
"CHAT_ID": {
"description": "ID of your Channel or Group where the bot will works or stream videos",
"required": true
},
"AUTH_USERS": {
"description": "ID of Auth Users who can use Admin commands (for multiple users seperated by space)",
"required": true
},
"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 Sir, I'm a bot to stream videos on telegram voice chat, not having 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"
}
]
}