Add multilingual (French) TTS UI + fix installability#62
Open
Fahtialalaina wants to merge 3 commits into
Open
Conversation
- multilingual/app_ml.py: new Gradio UI using ChatterboxMultilingualTTS (chatterbox-tts) for French + 22 other languages, with optional voice cloning, exaggeration/CFG/temperature controls and seeding. Runs on CUDA / Apple Silicon MPS / CPU. Isolated from the vendored English package to avoid the `chatterbox` name collision. - requirements.txt: unpin auto-editor (27.1.1 was removed from PyPI and broke fresh installs) and add pydub (imported by Chatter.py but missing from requirements). - .gitignore: ignore extra venv, generated audio and runtime settings.json. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
multilingual/README.md: prerequisites, install, launch, usage, supported languages, French tips, and troubleshooting. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
LOCAL_SETUP.md: prerequisites, macOS/CUDA install paths, launch, settings.json overview, and troubleshooting for the main app. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
New feature — multilingual TTS UI
multilingual/app_ml.py: a standalone Gradio interface built onChatterboxMultilingualTTS(from the officialchatterbox-ttspackage) that supports French + 22 other languages.chatterbox.src.chatterbox) to avoid the top-levelchatterboximport-name collision; meant to run from its own directory / virtualenv.Installability fixes (universally beneficial)
requirements.txt:auto-editor— the pinned27.1.1was removed from PyPI, so fresh installs failed to resolve.auto-editoris only invoked as an optional CLI subprocess, and the flags used are stable across versions.pydub— it is imported byChatter.pybut was missing from requirements.--extra-index-urland pinnedtorch/torchaudioare left untouched.Housekeeping
.gitignore: ignore the extra virtualenv, generated audio (*.wav,multilingual/outputs/) and the runtime-generatedsettings.json.Notes for reviewers
Chatter.pyor the vendored English model path, so existing behavior is unchanged.🤖 Generated with Claude Code