├── .gitignore ├── .python-version ├── README.md ├── docs └── vibevoice-demo-caption.gif ├── pyproject.toml ├── requirements.txt └── src └── vibevoice ├── __init__.py ├── cli.py ├── loading_indicator.py └── server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaepper/vibevoice/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaepper/vibevoice/HEAD/README.md -------------------------------------------------------------------------------- /docs/vibevoice-demo-caption.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaepper/vibevoice/HEAD/docs/vibevoice-demo-caption.gif -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaepper/vibevoice/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaepper/vibevoice/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/vibevoice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaepper/vibevoice/HEAD/src/vibevoice/__init__.py -------------------------------------------------------------------------------- /src/vibevoice/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaepper/vibevoice/HEAD/src/vibevoice/cli.py -------------------------------------------------------------------------------- /src/vibevoice/loading_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaepper/vibevoice/HEAD/src/vibevoice/loading_indicator.py -------------------------------------------------------------------------------- /src/vibevoice/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaepper/vibevoice/HEAD/src/vibevoice/server.py --------------------------------------------------------------------------------