├── .gitignore ├── LICENSE ├── README.md ├── combo_creator ├── __init__.py ├── combo.py ├── logo.png └── ui.py ├── requirements.txt ├── screens ├── app.png ├── appworking.png ├── completion.png └── workingallframes.png └── vea ├── __init__.py ├── assets └── icon.png ├── controller.py ├── dialog.py ├── motion.py ├── play_video.py ├── tools ├── __init__.py ├── timestamps.py ├── video_get.py └── video_show.py └── ui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/README.md -------------------------------------------------------------------------------- /combo_creator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /combo_creator/combo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/combo_creator/combo.py -------------------------------------------------------------------------------- /combo_creator/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/combo_creator/logo.png -------------------------------------------------------------------------------- /combo_creator/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/combo_creator/ui.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/requirements.txt -------------------------------------------------------------------------------- /screens/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/screens/app.png -------------------------------------------------------------------------------- /screens/appworking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/screens/appworking.png -------------------------------------------------------------------------------- /screens/completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/screens/completion.png -------------------------------------------------------------------------------- /screens/workingallframes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/screens/workingallframes.png -------------------------------------------------------------------------------- /vea/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vea/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/vea/assets/icon.png -------------------------------------------------------------------------------- /vea/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/vea/controller.py -------------------------------------------------------------------------------- /vea/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/vea/dialog.py -------------------------------------------------------------------------------- /vea/motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/vea/motion.py -------------------------------------------------------------------------------- /vea/play_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/vea/play_video.py -------------------------------------------------------------------------------- /vea/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/vea/tools/__init__.py -------------------------------------------------------------------------------- /vea/tools/timestamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/vea/tools/timestamps.py -------------------------------------------------------------------------------- /vea/tools/video_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/vea/tools/video_get.py -------------------------------------------------------------------------------- /vea/tools/video_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/vea/tools/video_show.py -------------------------------------------------------------------------------- /vea/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap-atul/Video-Editing-Automation/HEAD/vea/ui.py --------------------------------------------------------------------------------