forked from Nubuki-all/Enc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
86 lines (86 loc) · 2.75 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
{
"name": "Tg-encoder",
"description": "A telegram bot which encodes videos.",
"logo": "https://telegra.ph/file/75ee20ec8d8c8bba84f02.jpg",
"keywords": ["Telegram","python", "Video","Compressor","Encoder"],
"repository": "https://github.com/nubuki-all/tg-encoder",
"success_url": "https://t.me/Ani_Mine",
"stack": "container",
"env": {
"ALWAYS_DEPLOY_LATEST": {
"description": "Whether to update on startup",
"value": "True",
"required": false
},
"APP_ID": {
"description": "You api id, from my.telegram.org or @apiScrapperRoBot.",
"value": ""
},
"API_HASH": {
"description": "You api hash, from my.telegram.org or @apiScrapperRoBot.",
"value": ""
},
"BOT_TOKEN": {
"description": "Make a bot from @BotFather, and enter it's api token here.",
"value": ""
},
"OWNER": {
"description": "Get ur Id Of Telegram nd Paste Here.",
"value": ""
},
"LOG_CHANNEL": {
"description": "Input Log Channel Id",
"value": "",
"required": false
},
"WORKERS": {
"description": "Number of pyrogram workers",
"value": "1",
"required": false
},
"FCHANNEL": {
"description": "Input Foward Channel Id",
"value": "",
"required": false
},
"FCHANNEL_STAT": {
"description": "Input Forward channel status message id",
"value": "",
"required": false
},
"FBANNER": {
"description": "Disable/enable Forward channel banner",
"value": "True",
"required": false
},
"FSTICKER": {
"description": "Enable forward channel sticker divider",
"value": "",
"required": false
},
"CAP_DECO": {
"description": "Input Caption decoration",
"value": "🌸",
"required": false
},
"DUMP_LEECH": {
"description": "Enable/disable dumping",
"value": "False",
"required": false
},
"CACHE_DL": {
"description": "Enable/disable caching downloads.",
"value": "True",
"required": false
},
"DATABASE_URL": {
"description": "Mongodb Database Url",
"value": ""
},
"FFMPEG": {
"description": "Put your FFMPEG code.",
"value": "ffmpeg -i '''{}''' -preset ultrafast -c:v libx265 -crf 27 -map 0:v -c:a aac -map 0:a -c:s copy -map 0:s? '''{}''' -y",
"required": false
}
}
}