forked from Captainamarica/VideoPlayerBot-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
89 lines (89 loc) · 3.04 KB
/
app.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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "Telegram Video Player Bot",
"description": "An Telegram Bot By @AsmSafone To Stream Videos in Voice Chat",
"logo": "https://telegra.ph/file/43e37874c6864b87cd5e2.jpg",
"stack": "container",
"keywords": [
"telegram",
"voicechat",
"bot",
"video",
"player",
"python",
"pyrogram",
"py-tgcalls",
"videoplayer"
],
"env": {
"API_ID": {
"description": "User Accounts Telegram API_ID get it from https://my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "User Accounts Telegram API_HASH get it from https://my.telegram.org/apps",
"required": true
},
"BOT_TOKEN": {
"description": "Your Telegram Bot Token, get it from https://t.me/botfather",
"required": true
},
"SESSION_STRING": {
"description": "User Accounts Session String, get it from https://replit.com/@AsmSafone/genStr",
"required": true
},
"CHAT_ID": {
"description": "ID of your Channel or Group where the bot stream Music/YouTube Lives/Live Stream",
"required": true
},
"LOG_GROUP": {
"description": "ID of the group to send playlist if CHAT_ID is a Group, if channel then leave blank",
"required": false
},
"AUTH_USERS": {
"description": "ID of Auth Users who can use Admin commands (for multiple users seperated by space)",
"required": true
},
"ADMIN_ONLY": {
"description": "Change it to 'True' If you want to make /play commands only for admins. By default /play is available for all.",
"value": "False",
"required": false
},
"STARTUP_STREAM": {
"description": "YouTube live / Direct link of a video to stream when the bot starts (Read the README for more info) ",
"value": "https://youtu.be/36YnV9STBqc",
"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 Sir, I'm a bot to stream videos on telegram voice chat, not having time to chat with you 😂!",
"required": false
},
"HEROKU_API_KEY": {
"description": "Your Heroku api token. Get it from https://dashboard.heroku.com/account",
"required": true
},
"HEROKU_APP_NAME": {
"description": "Name of your Heroku app, given in the first blank on this page if deploying to heroku.",
"required": true
},
"IS_NONSTOP_STREAM": {
"description": "Change it to 'False' If you want to disable nonstop 24x7 live stream feature. By default it is enabled.",
"value": "True",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
]
}