tts-with-rvc-onnx


Nametts-with-rvc-onnx JSON
Version 0.1.9.3 PyPI version JSON
download
home_pagehttps://github.com/Atm4x/tts-with-rvc/tree/onnx
SummaryTTS with RVC pipeline (ONNX Version)
upload_time2025-09-03 20:27:00
maintainerNone
docs_urlNone
authorAtm4x
requires_pythonNone
licenseMIT
keywords tts rvc voice conversion speech synthesis onnx amd
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # **TTS-with-RVC-ONNX** 0.1.9

***TTS-with-RVC-ONNX** (Text-to-Speech with RVC using ONNX)* is a package designed to enhance the capabilities of *text-to-speech (TTS)* systems by introducing an *RVC* module running on the ONNX Runtime. The package enables users to not only convert text into speech but also personalize and customize the voice output according to their preferences with RVC support, optimized for various hardware backends (DirectML, CUDA, CPU).

ONNX Runtime is used for RVC inference, potentially leveraging hardware acceleration (DirectML on Windows/AMD, CUDA on NVIDIA). PyTorch is required *only* for specific F0 predictors (`rmvpe`).

**It may contain bugs. Report an issue in case of error.**

## Release notes

**0.1.9** - April 10, 2025: Current ONNX Branch Sync
*   Synced RVC parameters with main branch 0.1.9 (`rms_mix_rate`, `protect`, `filter_radius`, `resample_sr`, `file_index2`, `verbose`).
*   Added support for F0 predictors: `rmvpe` (using ONNX), `pm`, `dio`, `harvest`.
*   Fixed F0 length mismatch issue and implemented correct audio padding.
*   Added `set_device` method to switch ONNX Runtime providers.
*   Updated dependencies and ONNX Runtime selection.

*(Based on main branch 0.1.9)*

**0.1.6** - Initial ONNX support.

## Prerequisites

You must have **Python >= 3.8 and <= 3.12** installed (3.12 is recommended).
You must have **ONNX Runtime** compatible hardware/drivers if using GPU acceleration (DirectML for AMD on Windows, CUDA for NVIDIA). The CPU provider works generally.
*   **PyTorch** is required *only* if using `f0_method='rmvpe'`.
*   **FFmpeg** must be installed and accessible in your system's PATH or placed in the script's directory. Download from [ffmpeg.org](https://ffmpeg.org/download.html).

## **Installation**

1.  Install the package using pip:
    CPU Version:
    ```bash
    pip install tts-with-rvc-onnx
    ```

    CUDA version:
    ```bash
    pip install tts-with-rvc-onnx[cuda]
    ```

    DML version (recommedned for AMD):
    ```bash
    pip install tts-with-rvc-onnx[dml]
    ```

2.  Ensure **FFmpeg** is installed and accessible (see Prerequisites).

## How it Works

1.  **Text-to-Speech (TTS):** Uses `edge-tts` to convert input text into speech, saved as a temporary audio file in the `tmp_directory`.
2.  **RVC (ONNX):** With the `.onnx` file provided, the RVC module (via ONNX Runtime) reads the temporary audio file, processes it (feature extraction, F0, conversion, index lookup), and generates a new audio file saved in `output_directory` with the voice replaced.

## Usage

TTS-with-RVC-ONNX has a class called `TTS_RVC`.

**Constructor Parameters:**

*   `model_path` (str): **Required.** Path to your `.onnx` RVC model file.

*And optional parameters:*

*   `voice` (str): Voice from `edge-tts` list (default: `"ru-RU-DmitryNeural"`).

*   `device` (str): ONNX Runtime provider (`"dml"`, `"cuda:0"`, `"cpu"`, etc.). Defaults to `"dml"`.

*   `tmp_directory` (str): Path to directory for temporary TTS files (default: system temp folder).

*   `output_directory` (str): Directory for saving final voiced audio (default: `"temp/"`).

*   `index_path` (str): Path to the Faiss `.index` file for voice adjustments (default: `""`).

*   `f0_method` (str): Method for calculating pitch. Available: `'rmvpe'`, `'pm'`, `'harvest'`, `'dio'`, `'crepe'`. Defaults to `"rmvpe"`.

*   `sampling_rate` (int): Target sample rate of the RVC model (default: `40000`).

*   `hop_size` (int): Hop size of the RVC model (default: `512`).

*Deprecated:*

*   `input_directory`: Use `tmp_directory` instead.

**Initialization Example:**

```python
from tts_with_rvc_onnx import TTS_RVC

tts = TTS_RVC(model_path="models/YourModel.onnx",
                index_path="logs/YourIndex.index",
                f0_method="rmvpe",
                device="dml") # Or "cuda:0", "cpu"
```

`tts.get_voices()` **is disabled indefinitely due to the problems**

Next, set the voice for TTS with `tts.set_voice()` function:

```python
tts.set_voice("ru-RU-DmitryNeural")
```

Setting the appropriate language is necessary if you are using other languages for voiceovers!

And final step is calling `tts` (the `__call__` method) to generate and replace voice:

```python
path = tts(text="Привет, мир!", pitch=6, index_rate=0.50)
```

**`__call__` Parameters:**

*   `text` (str): **Required.** Text for TTS.

*   `pitch` (int, optional): Pitch change (transpose) for RVC in semitones. Negative values compatible. Default: `0`.

*   `tts_rate` (int, optional): Extra rate of speech for Edge TTS in percentage (+/-). Default: `0`.

*   `tts_volume` (int, optional): Extra volume of speech for Edge TTS in percentage (+/-). Default: `0`.

*   `tts_pitch` (int, optional): Extra pitch of TTS-generated audio in Hz (+/-). **Not recommended**. Default: `0`.

*   `output_filename` (str, optional): Name for the output file. If `None`, a unique name is generated. Default: `None`.

*   `index_rate` (float, optional): Blending rate between original and indexed voice conversion (0 to 1). Default: `0.75`.

*   `f0method` (str, optional): F0 extraction method for this specific call, overrides the instance default: `'rmvpe'`, `'pm'`, `'harvest'`, `'dio'`. Default uses instance setting.

*   `file_index2` (str, optional): Path to secondary index file for RVC. Default: `""`.

*   `filter_radius` (int, optional): Median filter radius for pitch results. Values `>=3` reduce breathiness. Default: `3`.

*   `resample_sr` (int, optional): Sample rate to resample final audio to. `0` means use model's sample rate. Default: `0`.

*   `rms_mix_rate` (float, optional): Volume envelope scaling (0-1). Lower values mimic original volume more closely. Default: `0.25`.

*   `protect` (float, optional): Protection for voiceless consonants and breaths (0-0.5). Lower values increase protection. `0.5` disables. Default: `0.33`.

*   `verbose` (bool, optional): Enable verbose logging for RVC conversion. Default: `False`.

*(Note: `is_half` parameter is removed as precision is handled by ONNX Runtime.)*

## Example of usage

A simple example for voicing text:

```python
import os
from tts_with_rvc_onnx import TTS_RVC
# from playsound import playsound # Optional

# --- Configuration ---
model_file = "models/DenVot.onnx"
index_file = "logs/added_IVF1749_Flat_nprobe_1.index" # Optional
temp_dir = "audio_temp"
output_dir = "audio_output"

os.makedirs(temp_dir, exist_ok=True)
os.makedirs(output_dir, exist_ok=True)

# --- Initialize ---
try:
    tts = TTS_RVC(
        model_path=model_file,
        index_path=index_file,
        tmp_directory=temp_dir,
        output_directory=output_dir,
        device="dml", # Or 'cuda:0', 'cpu'
        f0_method="rmvpe"
    )

    tts.set_voice("ru-RU-DmitryNeural")

    # --- Generate ---
    path = tts(text="Привет, мир!", pitch=6, index_rate=0.9)
    print(f"Audio saved to: {path}")

    # --- Play (Optional) ---
    # playsound(path)

except Exception as e:
    print(f"An error occurred: {e}")

```

## Text parameters

There are some text parameters processor for integration issues such as adding GPT module.

You can process them using `process_args` in `TTS_RVC` class:

*   `--tts-rate (value)`: TTS parameter to edit the speech rate.

*   `--tts-volume (value)`: TTS parameter to edit the speech volume. **May have limited effect due to RVC volume normalization.**

*   `--tts-pitch (value)`: TTS parameter to edit the pitch of TTS generated audio. **Not recommended.**

*   `--rvc-pitch (value)`: RVC parameter to edit the pitch of the output audio (semitones).

Now the principle of work:

```python
from tts_with_rvc_onnx import TTS_RVC

tts = TTS_RVC(model_path="models/YourModel.onnx", device="dml", tmp_directory="temp/")

message_with_args = "This is a test --rvc-pitch -2 and slower --tts-rate -10"

# This method returns arguments and original text without these text parameters
args, clean_message = tts.process_args(message_with_args)
# args = [-10, 0, 0, -2] # [tts_rate, tts_volume, tts_pitch, rvc_pitch]
# clean_message = "This is a test and slower"

# Use extracted arguments for generation:
path = tts(clean_message, tts_rate=args[0],
                        tts_volume=args[1],
                        tts_pitch=args[2],
                        pitch=args[3])
```

The `args` variable contains a list with the following structure:

`args[0]` - TTS Rate

`args[1]` - TTS Volume

`args[2]` - TTS Pitch

`args[3]` - RVC pitch

## Methods

*   `set_voice(voice)`: Changes the Edge TTS voice.

*   `set_index_path(index_path)`: Updates the path to the Faiss `.index` file.

*   `set_device(device)`: Changes the ONNX Runtime provider (e.g., 'dml', 'cuda:0', 'cpu') and reinitializes the backend.

*   `set_output_directory(directory_path)`: Sets the default directory for saving output files.

*   `process_args(text)`: Extracts text parameters (see above).

*   `voiceover_file(input_path, ...)`: Applies RVC voice conversion directly to an existing audio file (accepts same RVC parameters as `__call__`).

## Exceptions

*   **`RuntimeError: Failed to load ONNX model...`**: Check `.onnx` model path and integrity. Ensure correct `onnxruntime-*` package is installed.
*   **`RuntimeError: Failed to initialize ONNX backend...`**: Check ONNX Runtime installation, drivers (CUDA/DirectML), or model compatibility.
*   **`FileNotFoundError`**: Input audio, `.onnx` model, `.index` file, or required predictor models (`rmvpe.onnx`) not found.
*   **`ValueError: Dimension mismatch...`**: Faiss `.index` file dimension doesn't match `ContentVec` output dimension (e.g., 256 vs 768). Use a compatible index.
*   **`RuntimeError: Failed to load audio...`**: Ensure FFmpeg is installed and accessible in PATH.
*   **Errors during F0 computation**: Check if required libraries (`parselmouth`, `pyworld`, `torch` for rmvpe) are installed correctly.

## Acknowledgements

*   [RVC Project](https://github.com/RVC-Project/) - For the original RVC model and concepts.

## License

MIT License

## Authors

*   [Atm4x](https://github.com/Atm4x) (Artem Dikarev)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Atm4x/tts-with-rvc/tree/onnx",
    "name": "tts-with-rvc-onnx",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "tts rvc voice conversion speech synthesis onnx amd",
    "author": "Atm4x",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/ca/f4/9b99f954610f9cfdce6dcee37701b3ff2ee33ff047c673bb29992910bae1/tts_with_rvc_onnx-0.1.9.3.tar.gz",
    "platform": null,
    "description": "# **TTS-with-RVC-ONNX** 0.1.9\r\n\r\n***TTS-with-RVC-ONNX** (Text-to-Speech with RVC using ONNX)* is a package designed to enhance the capabilities of *text-to-speech (TTS)* systems by introducing an *RVC* module running on the ONNX Runtime. The package enables users to not only convert text into speech but also personalize and customize the voice output according to their preferences with RVC support, optimized for various hardware backends (DirectML, CUDA, CPU).\r\n\r\nONNX Runtime is used for RVC inference, potentially leveraging hardware acceleration (DirectML on Windows/AMD, CUDA on NVIDIA). PyTorch is required *only* for specific F0 predictors (`rmvpe`).\r\n\r\n**It may contain bugs. Report an issue in case of error.**\r\n\r\n## Release notes\r\n\r\n**0.1.9** - April 10, 2025: Current ONNX Branch Sync\r\n*   Synced RVC parameters with main branch 0.1.9 (`rms_mix_rate`, `protect`, `filter_radius`, `resample_sr`, `file_index2`, `verbose`).\r\n*   Added support for F0 predictors: `rmvpe` (using ONNX), `pm`, `dio`, `harvest`.\r\n*   Fixed F0 length mismatch issue and implemented correct audio padding.\r\n*   Added `set_device` method to switch ONNX Runtime providers.\r\n*   Updated dependencies and ONNX Runtime selection.\r\n\r\n*(Based on main branch 0.1.9)*\r\n\r\n**0.1.6** - Initial ONNX support.\r\n\r\n## Prerequisites\r\n\r\nYou must have **Python >= 3.8 and <= 3.12** installed (3.12 is recommended).\r\nYou must have **ONNX Runtime** compatible hardware/drivers if using GPU acceleration (DirectML for AMD on Windows, CUDA for NVIDIA). The CPU provider works generally.\r\n*   **PyTorch** is required *only* if using `f0_method='rmvpe'`.\r\n*   **FFmpeg** must be installed and accessible in your system's PATH or placed in the script's directory. Download from [ffmpeg.org](https://ffmpeg.org/download.html).\r\n\r\n## **Installation**\r\n\r\n1.  Install the package using pip:\r\n    CPU Version:\r\n    ```bash\r\n    pip install tts-with-rvc-onnx\r\n    ```\r\n\r\n    CUDA version:\r\n    ```bash\r\n    pip install tts-with-rvc-onnx[cuda]\r\n    ```\r\n\r\n    DML version (recommedned for AMD):\r\n    ```bash\r\n    pip install tts-with-rvc-onnx[dml]\r\n    ```\r\n\r\n2.  Ensure **FFmpeg** is installed and accessible (see Prerequisites).\r\n\r\n## How it Works\r\n\r\n1.  **Text-to-Speech (TTS):** Uses `edge-tts` to convert input text into speech, saved as a temporary audio file in the `tmp_directory`.\r\n2.  **RVC (ONNX):** With the `.onnx` file provided, the RVC module (via ONNX Runtime) reads the temporary audio file, processes it (feature extraction, F0, conversion, index lookup), and generates a new audio file saved in `output_directory` with the voice replaced.\r\n\r\n## Usage\r\n\r\nTTS-with-RVC-ONNX has a class called `TTS_RVC`.\r\n\r\n**Constructor Parameters:**\r\n\r\n*   `model_path` (str): **Required.** Path to your `.onnx` RVC model file.\r\n\r\n*And optional parameters:*\r\n\r\n*   `voice` (str): Voice from `edge-tts` list (default: `\"ru-RU-DmitryNeural\"`).\r\n\r\n*   `device` (str): ONNX Runtime provider (`\"dml\"`, `\"cuda:0\"`, `\"cpu\"`, etc.). Defaults to `\"dml\"`.\r\n\r\n*   `tmp_directory` (str): Path to directory for temporary TTS files (default: system temp folder).\r\n\r\n*   `output_directory` (str): Directory for saving final voiced audio (default: `\"temp/\"`).\r\n\r\n*   `index_path` (str): Path to the Faiss `.index` file for voice adjustments (default: `\"\"`).\r\n\r\n*   `f0_method` (str): Method for calculating pitch. Available: `'rmvpe'`, `'pm'`, `'harvest'`, `'dio'`, `'crepe'`. Defaults to `\"rmvpe\"`.\r\n\r\n*   `sampling_rate` (int): Target sample rate of the RVC model (default: `40000`).\r\n\r\n*   `hop_size` (int): Hop size of the RVC model (default: `512`).\r\n\r\n*Deprecated:*\r\n\r\n*   `input_directory`: Use `tmp_directory` instead.\r\n\r\n**Initialization Example:**\r\n\r\n```python\r\nfrom tts_with_rvc_onnx import TTS_RVC\r\n\r\ntts = TTS_RVC(model_path=\"models/YourModel.onnx\",\r\n                index_path=\"logs/YourIndex.index\",\r\n                f0_method=\"rmvpe\",\r\n                device=\"dml\") # Or \"cuda:0\", \"cpu\"\r\n```\r\n\r\n`tts.get_voices()` **is disabled indefinitely due to the problems**\r\n\r\nNext, set the voice for TTS with `tts.set_voice()` function:\r\n\r\n```python\r\ntts.set_voice(\"ru-RU-DmitryNeural\")\r\n```\r\n\r\nSetting the appropriate language is necessary if you are using other languages for voiceovers!\r\n\r\nAnd final step is calling `tts` (the `__call__` method) to generate and replace voice:\r\n\r\n```python\r\npath = tts(text=\"\u041f\u0440\u0438\u0432\u0435\u0442, \u043c\u0438\u0440!\", pitch=6, index_rate=0.50)\r\n```\r\n\r\n**`__call__` Parameters:**\r\n\r\n*   `text` (str): **Required.** Text for TTS.\r\n\r\n*   `pitch` (int, optional): Pitch change (transpose) for RVC in semitones. Negative values compatible. Default: `0`.\r\n\r\n*   `tts_rate` (int, optional): Extra rate of speech for Edge TTS in percentage (+/-). Default: `0`.\r\n\r\n*   `tts_volume` (int, optional): Extra volume of speech for Edge TTS in percentage (+/-). Default: `0`.\r\n\r\n*   `tts_pitch` (int, optional): Extra pitch of TTS-generated audio in Hz (+/-). **Not recommended**. Default: `0`.\r\n\r\n*   `output_filename` (str, optional): Name for the output file. If `None`, a unique name is generated. Default: `None`.\r\n\r\n*   `index_rate` (float, optional): Blending rate between original and indexed voice conversion (0 to 1). Default: `0.75`.\r\n\r\n*   `f0method` (str, optional): F0 extraction method for this specific call, overrides the instance default: `'rmvpe'`, `'pm'`, `'harvest'`, `'dio'`. Default uses instance setting.\r\n\r\n*   `file_index2` (str, optional): Path to secondary index file for RVC. Default: `\"\"`.\r\n\r\n*   `filter_radius` (int, optional): Median filter radius for pitch results. Values `>=3` reduce breathiness. Default: `3`.\r\n\r\n*   `resample_sr` (int, optional): Sample rate to resample final audio to. `0` means use model's sample rate. Default: `0`.\r\n\r\n*   `rms_mix_rate` (float, optional): Volume envelope scaling (0-1). Lower values mimic original volume more closely. Default: `0.25`.\r\n\r\n*   `protect` (float, optional): Protection for voiceless consonants and breaths (0-0.5). Lower values increase protection. `0.5` disables. Default: `0.33`.\r\n\r\n*   `verbose` (bool, optional): Enable verbose logging for RVC conversion. Default: `False`.\r\n\r\n*(Note: `is_half` parameter is removed as precision is handled by ONNX Runtime.)*\r\n\r\n## Example of usage\r\n\r\nA simple example for voicing text:\r\n\r\n```python\r\nimport os\r\nfrom tts_with_rvc_onnx import TTS_RVC\r\n# from playsound import playsound # Optional\r\n\r\n# --- Configuration ---\r\nmodel_file = \"models/DenVot.onnx\"\r\nindex_file = \"logs/added_IVF1749_Flat_nprobe_1.index\" # Optional\r\ntemp_dir = \"audio_temp\"\r\noutput_dir = \"audio_output\"\r\n\r\nos.makedirs(temp_dir, exist_ok=True)\r\nos.makedirs(output_dir, exist_ok=True)\r\n\r\n# --- Initialize ---\r\ntry:\r\n    tts = TTS_RVC(\r\n        model_path=model_file,\r\n        index_path=index_file,\r\n        tmp_directory=temp_dir,\r\n        output_directory=output_dir,\r\n        device=\"dml\", # Or 'cuda:0', 'cpu'\r\n        f0_method=\"rmvpe\"\r\n    )\r\n\r\n    tts.set_voice(\"ru-RU-DmitryNeural\")\r\n\r\n    # --- Generate ---\r\n    path = tts(text=\"\u041f\u0440\u0438\u0432\u0435\u0442, \u043c\u0438\u0440!\", pitch=6, index_rate=0.9)\r\n    print(f\"Audio saved to: {path}\")\r\n\r\n    # --- Play (Optional) ---\r\n    # playsound(path)\r\n\r\nexcept Exception as e:\r\n    print(f\"An error occurred: {e}\")\r\n\r\n```\r\n\r\n## Text parameters\r\n\r\nThere are some text parameters processor for integration issues such as adding GPT module.\r\n\r\nYou can process them using `process_args` in `TTS_RVC` class:\r\n\r\n*   `--tts-rate (value)`: TTS parameter to edit the speech rate.\r\n\r\n*   `--tts-volume (value)`: TTS parameter to edit the speech volume. **May have limited effect due to RVC volume normalization.**\r\n\r\n*   `--tts-pitch (value)`: TTS parameter to edit the pitch of TTS generated audio. **Not recommended.**\r\n\r\n*   `--rvc-pitch (value)`: RVC parameter to edit the pitch of the output audio (semitones).\r\n\r\nNow the principle of work:\r\n\r\n```python\r\nfrom tts_with_rvc_onnx import TTS_RVC\r\n\r\ntts = TTS_RVC(model_path=\"models/YourModel.onnx\", device=\"dml\", tmp_directory=\"temp/\")\r\n\r\nmessage_with_args = \"This is a test --rvc-pitch -2 and slower --tts-rate -10\"\r\n\r\n# This method returns arguments and original text without these text parameters\r\nargs, clean_message = tts.process_args(message_with_args)\r\n# args = [-10, 0, 0, -2] # [tts_rate, tts_volume, tts_pitch, rvc_pitch]\r\n# clean_message = \"This is a test and slower\"\r\n\r\n# Use extracted arguments for generation:\r\npath = tts(clean_message, tts_rate=args[0],\r\n                        tts_volume=args[1],\r\n                        tts_pitch=args[2],\r\n                        pitch=args[3])\r\n```\r\n\r\nThe `args` variable contains a list with the following structure:\r\n\r\n`args[0]` - TTS Rate\r\n\r\n`args[1]` - TTS Volume\r\n\r\n`args[2]` - TTS Pitch\r\n\r\n`args[3]` - RVC pitch\r\n\r\n## Methods\r\n\r\n*   `set_voice(voice)`: Changes the Edge TTS voice.\r\n\r\n*   `set_index_path(index_path)`: Updates the path to the Faiss `.index` file.\r\n\r\n*   `set_device(device)`: Changes the ONNX Runtime provider (e.g., 'dml', 'cuda:0', 'cpu') and reinitializes the backend.\r\n\r\n*   `set_output_directory(directory_path)`: Sets the default directory for saving output files.\r\n\r\n*   `process_args(text)`: Extracts text parameters (see above).\r\n\r\n*   `voiceover_file(input_path, ...)`: Applies RVC voice conversion directly to an existing audio file (accepts same RVC parameters as `__call__`).\r\n\r\n## Exceptions\r\n\r\n*   **`RuntimeError: Failed to load ONNX model...`**: Check `.onnx` model path and integrity. Ensure correct `onnxruntime-*` package is installed.\r\n*   **`RuntimeError: Failed to initialize ONNX backend...`**: Check ONNX Runtime installation, drivers (CUDA/DirectML), or model compatibility.\r\n*   **`FileNotFoundError`**: Input audio, `.onnx` model, `.index` file, or required predictor models (`rmvpe.onnx`) not found.\r\n*   **`ValueError: Dimension mismatch...`**: Faiss `.index` file dimension doesn't match `ContentVec` output dimension (e.g., 256 vs 768). Use a compatible index.\r\n*   **`RuntimeError: Failed to load audio...`**: Ensure FFmpeg is installed and accessible in PATH.\r\n*   **Errors during F0 computation**: Check if required libraries (`parselmouth`, `pyworld`, `torch` for rmvpe) are installed correctly.\r\n\r\n## Acknowledgements\r\n\r\n*   [RVC Project](https://github.com/RVC-Project/) - For the original RVC model and concepts.\r\n\r\n## License\r\n\r\nMIT License\r\n\r\n## Authors\r\n\r\n*   [Atm4x](https://github.com/Atm4x) (Artem Dikarev)\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "TTS with RVC pipeline (ONNX Version)",
    "version": "0.1.9.3",
    "project_urls": {
        "Homepage": "https://github.com/Atm4x/tts-with-rvc/tree/onnx"
    },
    "split_keywords": [
        "tts",
        "rvc",
        "voice",
        "conversion",
        "speech",
        "synthesis",
        "onnx",
        "amd"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2440c2e7adf8eea4d1c94d9c7862008443f808e277a32ef42a51a444667cd096",
                "md5": "dd28f65d30a1ffe1a2fe6c8125dfd8f6",
                "sha256": "33fb381ce86dc6fd6dcd9dc8df01c75cee7e5c62d5fbafba133aad838553129d"
            },
            "downloads": -1,
            "filename": "tts_with_rvc_onnx-0.1.9.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "dd28f65d30a1ffe1a2fe6c8125dfd8f6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 26453,
            "upload_time": "2025-09-03T20:26:59",
            "upload_time_iso_8601": "2025-09-03T20:26:59.132687Z",
            "url": "https://files.pythonhosted.org/packages/24/40/c2e7adf8eea4d1c94d9c7862008443f808e277a32ef42a51a444667cd096/tts_with_rvc_onnx-0.1.9.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "caf49b99f954610f9cfdce6dcee37701b3ff2ee33ff047c673bb29992910bae1",
                "md5": "eda3ca756a0dfd00aafef1e9b69e6c98",
                "sha256": "dfc694d136fcaf4f708e218f607df73fd8cc19ee600fd0a1c9f52aa86a3f5222"
            },
            "downloads": -1,
            "filename": "tts_with_rvc_onnx-0.1.9.3.tar.gz",
            "has_sig": false,
            "md5_digest": "eda3ca756a0dfd00aafef1e9b69e6c98",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 27346,
            "upload_time": "2025-09-03T20:27:00",
            "upload_time_iso_8601": "2025-09-03T20:27:00.343181Z",
            "url": "https://files.pythonhosted.org/packages/ca/f4/9b99f954610f9cfdce6dcee37701b3ff2ee33ff047c673bb29992910bae1/tts_with_rvc_onnx-0.1.9.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-03 20:27:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Atm4x",
    "github_project": "tts-with-rvc",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "tts-with-rvc-onnx"
}
        
Elapsed time: 3.91878s