Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Files + Infinite content in Gradio UI #148

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ torchaudio.save("sample.wav", wavs[0], model.autoencoder.sampling_rate)
### Gradio interface (recommended)

```bash
uv run gradio_interface.py
# python gradio_interface.py
uv run gradio_interface/main.py
# python gradio_interface/main.py
```

This should produce a `sample.wav` file in your project root directory.
Expand All @@ -78,6 +78,8 @@ _For repeated sampling we highly recommend using the gradio interface instead, a
## Features

- Zero-shot TTS with voice cloning: Input desired text and a 10-30s speaker sample to generate high quality TTS output
- Text/File inputs: Support both written text and document (TXT, PDF, XLSX, DOCX and other [Docling](https://ds4sd.github.io/docling/supported_formats/) supported formats)
- Unlimited content: Support infinite content length due to the chunked generation
- Audio prefix inputs: Add text plus an audio prefix for even richer speaker matching. Audio prefixes can be used to elicit behaviours such as whispering which can otherwise be challenging to replicate when cloning from speaker embeddings
- Multilingual support: Zonos-v0.1 supports English, Japanese, Chinese, French, and German
- Audio quality and emotion control: Zonos offers fine-grained control of many aspects of the generated audio. These include speaking rate, pitch, maximum frequency, audio quality, and various emotions such as happiness, anger, sadness, and fear.
Expand Down
Loading