├── .gitignore ├── README.md ├── poetry.lock ├── pyproject.toml ├── run.sh ├── script2scene ├── __init__.py └── app.py ├── templates └── index.html └── tests └── __init__.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | /videos 3 | .venv 4 | **/__pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Script2Scene/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Script2Scene/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Script2Scene/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Script2Scene/HEAD/run.sh -------------------------------------------------------------------------------- /script2scene/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /script2scene/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Script2Scene/HEAD/script2scene/app.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Script2Scene/HEAD/templates/index.html -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------