Home/Model Training/metavoice-src
metavoice-src logo

metavoice-src

Enrichment pending
metavoiceio/metavoice-src

Foundational model for human-like, expressive TTS

GraphCanon updated today · GitHub synced today

4.2k
Stars
692
Forks
64
Open issues
80
Watchers
1y
Last push
Python Apache-2.0Created Feb 6, 2024

Trust & integrity

Full report
Maintenance
Dormant (710d since push)
As of today · Source: github_public_v1
Provenance
Not a fork · Organization account
As of today · Source: github_public_v1
Security (OSV)
214 low (214 low)
As of today · Source: osv@v1

Public GitHub metadata and optional OSV dependency scans. Signals, not a guarantee. Trust methodology.

Overview

Foundational model for human-like, expressive TTS

Capability facts

Deploy
Self-host

Source: dockerfile:Dockerfile · Jul 11, 2026

Docker
Dockerfile present

Source: dockerfile:Dockerfile · Jul 11, 2026

CLI
CLI entrypoint

Source: pyproject.toml:[project.scripts] · Jul 11, 2026

Languages
python

Source: github.language+pyproject.toml · Jul 11, 2026

Categories

Compatibility

Sourced claims from the README excerpt - not unsourced marketing copy.

Python runtimePython

Source: README excerpt (regex_v1, Jul 11, 2026)

- Python >=3.10,<3.12
Source link

Tags

README

Installation

Pre-requisites:

Environment setup


---

# install ffmpeg
wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz
wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz.md5
md5sum -c ffmpeg-git-amd64-static.tar.xz.md5
tar xvf ffmpeg-git-amd64-static.tar.xz
sudo mv ffmpeg-git-*-static/ffprobe ffmpeg-git-*-static/ffmpeg /usr/local/bin/
rm -rf ffmpeg-git-*

---

# install rust if not installed (ensure you've restarted your terminal after installation)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Project dependencies installation

  1. Using poetry
  2. Using pip/conda

Using poetry (recommended)


---

# install poetry if not installed (ensure you've restarted your terminal after installation)
pipx install poetry

---

# if running from Linux, keyring backend can hang on `poetry install`. This prevents that.
export PYTHON_KEYRING_BACKEND=keyring.backends.fail.Keyring