Skip to content
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
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,16 @@ conda create -n moss-tts python=3.12 -y
conda activate moss-tts
```

Install all required dependencies:
Install the FFmpeg system dependency (required by `torchcodec` for audio I/O):

```bash
# Debian/Ubuntu
sudo apt-get install -y ffmpeg
# macOS
brew install ffmpeg
```

Install all required Python dependencies:

```bash
git clone https://github.com/OpenMOSS/MOSS-TTS.git
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ torch-runtime = [
"torchaudio==2.9.1+cu128",
"torchcodec===0.8.1",
"transformers==5.0.0",
"accelerate>=1.10.1",
]

# llama.cpp backend — torch-free core
Expand Down