forked from AbirHasan2005/VideoMerge-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
78 lines (78 loc) · 2.62 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
{
"name": "Telegram Video Merge Bot",
"description": "A Telegram Video Merge Bot in Pyrogram by @AbirHasan2005",
"keywords": [
"telegram",
"video",
"merge",
"bot"
],
"repository": "https://github.com/AbirHasan2005/VideoMerge-Bot",
"website": "https://telegram.dog/AbirHasan2005",
"success_url": "https://t.me/AH_VideoMergeBot",
"env": {
"API_ID": {
"description": "Get this value from my.telegram.org or @TeleORG_Bot"
},
"API_HASH": {
"description": "Get this value from my.telegram.org or @TeleORG_Bot"
},
"BOT_TOKEN": {
"description": "Get this from @BotFather XD"
},
"BOT_OWNER": {
"description": "Bot Owner UserID"
},
"MONGODB_URI": {
"description": "MongoDB Database URI for Saving UserID for Broadcast. Tutorial: https://www.youtube.com/watch?v=aXlF80Cn7iU"
},
"UPDATES_CHANNEL": {
"description": "ID of a Channel which you want to do Force Sub to use the bot. Example: -100123456789",
"required": false
},
"LOG_CHANNEL": {
"description": "Logs Channel ID for some Tracking XD. Example: -100123456789"
},
"DOWN_PATH": {
"description": "Files download path. You can keep default. Should not end with '/'",
"required": false,
"value": "./downloads"
},
"TIME_GAP": {
"description": "Time Gap Between Process. Keep Default.",
"value": "5"
},
"MAX_VIDEOS": {
"description": "Max Videos Allowed to Merge. Don't put more than 15.",
"value": "5"
},
"SESSION_NAME": {
"description": "Any Session Name of Bot",
"required": "False",
"value": "Heroku-Bot"
},
"STREAMTAPE_API_USERNAME": {
"description": "Your Streamtape API Username for Uploading to Streamtape if File size is bigger than 2GB."
},
"STREAMTAPE_API_PASS": {
"description": "Your Streamtape API Password for Uploading to Streamtape if File size is bigger than 2GB."
},
"BROADCAST_AS_COPY": {
"description": "Broadcast as Copy or with Forward Tag. Value should be True/False."
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}