├── .gitignore ├── README.md ├── install.py ├── launch.py ├── requirements.txt ├── scripts ├── txt2video_synthesis │ ├── generate.py │ ├── ngrok.py │ ├── shared.py │ └── ui.py └── txt2video_synthesis_main.py ├── webui.bat └── webui.sh /.gitignore: -------------------------------------------------------------------------------- 1 | cache 2 | models 3 | __pycache__ 4 | venv 5 | tmp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/text-to-video-synthesis-webui/HEAD/README.md -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/text-to-video-synthesis-webui/HEAD/install.py -------------------------------------------------------------------------------- /launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/text-to-video-synthesis-webui/HEAD/launch.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/text-to-video-synthesis-webui/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/txt2video_synthesis/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/text-to-video-synthesis-webui/HEAD/scripts/txt2video_synthesis/generate.py -------------------------------------------------------------------------------- /scripts/txt2video_synthesis/ngrok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/text-to-video-synthesis-webui/HEAD/scripts/txt2video_synthesis/ngrok.py -------------------------------------------------------------------------------- /scripts/txt2video_synthesis/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/text-to-video-synthesis-webui/HEAD/scripts/txt2video_synthesis/shared.py -------------------------------------------------------------------------------- /scripts/txt2video_synthesis/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/text-to-video-synthesis-webui/HEAD/scripts/txt2video_synthesis/ui.py -------------------------------------------------------------------------------- /scripts/txt2video_synthesis_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/text-to-video-synthesis-webui/HEAD/scripts/txt2video_synthesis_main.py -------------------------------------------------------------------------------- /webui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/text-to-video-synthesis-webui/HEAD/webui.bat -------------------------------------------------------------------------------- /webui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/text-to-video-synthesis-webui/HEAD/webui.sh --------------------------------------------------------------------------------