├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── generate-pyrogram-session-string.py ├── heroku.yml ├── main.py ├── plugins ├── ping.py ├── sysinfo.py └── vc │ ├── Voice chat │ ├── channel.py │ ├── player.py │ ├── radio.py │ └── recorder.py ├── requirements.txt ├── runtime.txt └── userbot.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/app.json -------------------------------------------------------------------------------- /generate-pyrogram-session-string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/generate-pyrogram-session-string.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/heroku.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/main.py -------------------------------------------------------------------------------- /plugins/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/plugins/ping.py -------------------------------------------------------------------------------- /plugins/sysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/plugins/sysinfo.py -------------------------------------------------------------------------------- /plugins/vc/Voice chat: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/vc/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/plugins/vc/channel.py -------------------------------------------------------------------------------- /plugins/vc/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/plugins/vc/player.py -------------------------------------------------------------------------------- /plugins/vc/radio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/plugins/vc/radio.py -------------------------------------------------------------------------------- /plugins/vc/recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/plugins/vc/recorder.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pyrogram 2 | TgCrypto 3 | ffmpeg-python 4 | psutil 5 | pytgcalls 6 | wheel 7 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.2 2 | -------------------------------------------------------------------------------- /userbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamilBots/TamilVcBot/HEAD/userbot.py --------------------------------------------------------------------------------