├── .gitignore
├── Aptfile
├── Config.py
├── Procfile
├── README.md
├── app.json
├── bot.pyc
├── requirements.txt
└── runtime.txt
/.gitignore:
--------------------------------------------------------------------------------
1 | t.py
2 | log.txt
3 | main.py
--------------------------------------------------------------------------------
/Aptfile:
--------------------------------------------------------------------------------
1 | tzdata
2 | curl
--------------------------------------------------------------------------------
/Config.py:
--------------------------------------------------------------------------------
1 | import os
2 |
3 | # Bot token from @botfather
4 | BOT_TOKEN = os.environ.get("BOT_TOKEN")
5 | # From my.telegram.org/
6 | API_ID = int(os.environ.get("API_ID", 0))
7 | API_HASH = os.environ.get("API_HASH")
8 | # For /log cmd
9 | OWNER_ID = [int(i) for i in os.environ.get("OWNER_ID", "1204927413").split(" ")]
10 | # No time limit for this users
11 | AUTH_USERS = [int(i) for i in os.environ.get("AUTH_USERS", "1204927413").split(" ")]
12 | # Time gap after each request (in seconds)
13 | TIME_GAP = int(os.environ.get("TIME_GAP", "360"))
14 | # Bot channel ID for ForceSub, don't forget to add bot in Bot Channel
15 | UPDATES_CHANNEL = os.environ.get("UPDATES_CHANNEL", False)
--------------------------------------------------------------------------------
/Procfile:
--------------------------------------------------------------------------------
1 | worker: python3 bot.pyc
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # live recdoring bot
2 | A bot to record live videos using its URL, eg. IPTV, youtube live stream, m3u8/mpd links, etc.
3 |
4 | Note:- Only none DRM links supported
5 |
6 | ### BOT LINK:
7 |
8 |
9 | ### Deploy to heroku
10 |
11 | [](https://dashboard.heroku.com/new?template=https://github.com/Jigarvarma2005/Live-Recording-Bot)
12 |
13 | ### Follow on:
14 |