├── .gitignore ├── LICENSE ├── README.md ├── bot ├── bot.py ├── handlers │ ├── merge.py │ └── start.py └── utils │ └── ffmpeg_utils.py ├── configs.py ├── main.py ├── merge.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | *.pyc 4 | inputs.txt 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doctorstra/Video-Editor-Bot-V22/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doctorstra/Video-Editor-Bot-V22/HEAD/README.md -------------------------------------------------------------------------------- /bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doctorstra/Video-Editor-Bot-V22/HEAD/bot/bot.py -------------------------------------------------------------------------------- /bot/handlers/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doctorstra/Video-Editor-Bot-V22/HEAD/bot/handlers/merge.py -------------------------------------------------------------------------------- /bot/handlers/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doctorstra/Video-Editor-Bot-V22/HEAD/bot/handlers/start.py -------------------------------------------------------------------------------- /bot/utils/ffmpeg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doctorstra/Video-Editor-Bot-V22/HEAD/bot/utils/ffmpeg_utils.py -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doctorstra/Video-Editor-Bot-V22/HEAD/configs.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doctorstra/Video-Editor-Bot-V22/HEAD/main.py -------------------------------------------------------------------------------- /merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doctorstra/Video-Editor-Bot-V22/HEAD/merge.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doctorstra/Video-Editor-Bot-V22/HEAD/requirements.txt --------------------------------------------------------------------------------