├── COPYING ├── Dockerfile ├── Procfile ├── README.md ├── app.json ├── bot ├── __init__.py ├── __main__.py ├── commands.py ├── config.py ├── get_cfg.py ├── helper_funcs │ ├── display_progress.py │ ├── download.py │ ├── ffmpeg.py │ └── utils.py ├── localisation.py └── plugins │ ├── call_back_button_handler.py │ ├── incoming_message_fn.py │ ├── new_join_fn.py │ └── status_message_fn.py ├── deploy.sh ├── heroku.yml ├── requirements.txt ├── runtime.txt └── start.sh /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m bot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/app.json -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/commands.py -------------------------------------------------------------------------------- /bot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/config.py -------------------------------------------------------------------------------- /bot/get_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/get_cfg.py -------------------------------------------------------------------------------- /bot/helper_funcs/display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/helper_funcs/display_progress.py -------------------------------------------------------------------------------- /bot/helper_funcs/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/helper_funcs/download.py -------------------------------------------------------------------------------- /bot/helper_funcs/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/helper_funcs/ffmpeg.py -------------------------------------------------------------------------------- /bot/helper_funcs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/helper_funcs/utils.py -------------------------------------------------------------------------------- /bot/localisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/localisation.py -------------------------------------------------------------------------------- /bot/plugins/call_back_button_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/plugins/call_back_button_handler.py -------------------------------------------------------------------------------- /bot/plugins/incoming_message_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/plugins/incoming_message_fn.py -------------------------------------------------------------------------------- /bot/plugins/new_join_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/plugins/new_join_fn.py -------------------------------------------------------------------------------- /bot/plugins/status_message_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/bot/plugins/status_message_fn.py -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/deploy.sh -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/heroku.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jigarvarma2k20/VideoCompress/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.5 -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | python3 -m bot 2 | --------------------------------------------------------------------------------