-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathapp.json
37 lines (37 loc) · 1.39 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
{
"name": "CompressorQueue",
"description": "A Normal Telegram Bot Which can Compress/encode/ Generate Samples of videos.",
"logo": "https://telegra.ph/file/75ee20ec8d8c8bba84f02.jpg",
"keywords": ["Telegram","python", "Video","Compressor","Encoder"],
"repository": "https://github.com/1Danish-00/CompressorQueue",
"success_url": "https://t.me/BotzHub",
"stack": "container",
"env": {
"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": ""
},
"THUMBNAIL": {
"description": "Put Link of any picture.",
"value": "https://telegra.ph/file/75ee20ec8d8c8bba84f02.jpg",
"required": false
},
"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
}
}
}