├── .gitignore ├── README.md ├── main.py ├── poetry.lock ├── pyproject.toml └── templates └── index.htm /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | video.mp4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stribny/fastapi-video/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stribny/fastapi-video/HEAD/main.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stribny/fastapi-video/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stribny/fastapi-video/HEAD/pyproject.toml -------------------------------------------------------------------------------- /templates/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stribny/fastapi-video/HEAD/templates/index.htm --------------------------------------------------------------------------------