├── .gitignore ├── COPYING ├── Procfile ├── README.md ├── app.json ├── bot.py ├── helper_funcs ├── chat_base.py ├── display_progress.py ├── help_Nekmo_ffmpeg.py └── help_uploadbot.py ├── plugins ├── FFMpegRoBot.py ├── _core.py ├── cb_buttons.py ├── convert_to_audio.py ├── convert_to_video.py ├── custom_thumbnail.py ├── download_stickers.py ├── extract_streams.py ├── extract_sub_title.py ├── gDrive.py ├── get_external_link.py ├── help_text.py ├── rename_file.py ├── unzip.py └── youtube_dl_echo.py ├── requirements.txt ├── runtime.txt ├── sample_config.py └── translation.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/COPYING -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/bot.py -------------------------------------------------------------------------------- /helper_funcs/chat_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/helper_funcs/chat_base.py -------------------------------------------------------------------------------- /helper_funcs/display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/helper_funcs/display_progress.py -------------------------------------------------------------------------------- /helper_funcs/help_Nekmo_ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/helper_funcs/help_Nekmo_ffmpeg.py -------------------------------------------------------------------------------- /helper_funcs/help_uploadbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/helper_funcs/help_uploadbot.py -------------------------------------------------------------------------------- /plugins/FFMpegRoBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/FFMpegRoBot.py -------------------------------------------------------------------------------- /plugins/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/_core.py -------------------------------------------------------------------------------- /plugins/cb_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/cb_buttons.py -------------------------------------------------------------------------------- /plugins/convert_to_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/convert_to_audio.py -------------------------------------------------------------------------------- /plugins/convert_to_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/convert_to_video.py -------------------------------------------------------------------------------- /plugins/custom_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/custom_thumbnail.py -------------------------------------------------------------------------------- /plugins/download_stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/download_stickers.py -------------------------------------------------------------------------------- /plugins/extract_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/extract_streams.py -------------------------------------------------------------------------------- /plugins/extract_sub_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/extract_sub_title.py -------------------------------------------------------------------------------- /plugins/gDrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/gDrive.py -------------------------------------------------------------------------------- /plugins/get_external_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/get_external_link.py -------------------------------------------------------------------------------- /plugins/help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/help_text.py -------------------------------------------------------------------------------- /plugins/rename_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/rename_file.py -------------------------------------------------------------------------------- /plugins/unzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/unzip.py -------------------------------------------------------------------------------- /plugins/youtube_dl_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/plugins/youtube_dl_echo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.2 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/sample_config.py -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thwarikh/FmDl_bot/HEAD/translation.py --------------------------------------------------------------------------------