├── Procfile ├── README.md ├── app.json ├── configs.py ├── helpers ├── broadcast.py ├── check_gap.py ├── clean.py ├── database │ ├── access_db.py │ ├── add_user.py │ └── database.py ├── display_progress.py ├── ffmpeg.py ├── forcesub.py ├── markup_maker.py ├── settings.py ├── streamtape.py └── uploader.py ├── main.py └── requirements.txt /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/app.json -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/configs.py -------------------------------------------------------------------------------- /helpers/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/broadcast.py -------------------------------------------------------------------------------- /helpers/check_gap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/check_gap.py -------------------------------------------------------------------------------- /helpers/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/clean.py -------------------------------------------------------------------------------- /helpers/database/access_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/database/access_db.py -------------------------------------------------------------------------------- /helpers/database/add_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/database/add_user.py -------------------------------------------------------------------------------- /helpers/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/database/database.py -------------------------------------------------------------------------------- /helpers/display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/display_progress.py -------------------------------------------------------------------------------- /helpers/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/ffmpeg.py -------------------------------------------------------------------------------- /helpers/forcesub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/forcesub.py -------------------------------------------------------------------------------- /helpers/markup_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/markup_maker.py -------------------------------------------------------------------------------- /helpers/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/settings.py -------------------------------------------------------------------------------- /helpers/streamtape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/streamtape.py -------------------------------------------------------------------------------- /helpers/uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/helpers/uploader.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbirHasan2005/VideoMerge-Bot/HEAD/requirements.txt --------------------------------------------------------------------------------