feat(cli): add MP3 output support alongside WAV#179
Open
F1LIP3 wants to merge 2 commits into
Open
Conversation
- omnivoice/utils/audio.py: save_audio() helper — WAV or MP3 128kbps by extension
- omnivoice/cli/infer.py: --format {wav,mp3} argument
- omnivoice/cli/infer_batch.py: --format {wav,mp3} argument (default: wav)
- omnivoice/cli/demo.py: Output format dropdown (WAV/MP3) on both tabs
- demo.py: save temp MP3 to system tempdir (was in .venv/ — unserverable by Gradio ASGI) - demo.py: move theme/css from Blocks() to launch() per Gradio 6.0 API - Clean up orphaned temp MP3 files from module directory
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.
Adds MP3 output (128kbps) alongside WAV across all CLI tools and the web UI.
Changes
omnivoice/utils/audio.py— Newsave_audio()helper: WAV (soundfile) or MP3 128kbps (pydub/ffmpeg) based on file extension.omnivoice/cli/infer.py— Added--format {wav,mp3}argument. Output format inferred from extension;--formatoverrides it.omnivoice/cli/infer_batch.py— Added--format {wav,mp3}argument (default: wav). Batch output respects format.omnivoice/cli/demo.py— "Output format / 输出格式" dropdown (WAV/MP3) on both Voice Clone and Voice Design tabs.QUICKSTART.md— Updated CLI examples with MP3 usage.File Size (same 4.3s clip)
MP3 is 3.1x smaller for identical audio quality.
Usage