Free Mimo TTS 2.5 (Voice Clone) on Xiaomi

Voice clone capabilities offered completely free currently.

Updated 5/11/20261 code examples
加载评分…

About the Model

Why choose MIMO Voice Clone 2.5?

If you need to provide extremely realistic tone re-enactment for virtual digital people, podcast generators or personalized apps, this model is the top stream of the current free solution.

Core strengths and characteristics

  • Minimalist re-engraving experience: only need to upload a short MP3 or WAV short audio that is less than 10MB, without a few tens of minutes of long training, the target vocal is instantly reproduced.
  • High reduction: accurately capture the timbre of the pronunciation, the habit of pause and the emotional resonance.
  • Multilingual pronunciation: Even if the original audio is Chinese, the re-engraved timbre can read English fluently, breaking the language barrier of the original pronunciation.

How to Access for Free (via Xiaomi)

Free basis (Why is it free?)

The sound re-engraving interface currently belongs to the public beta/promotion bonus period of the MIMO 2.5 TTS series, and enjoys a full limited time free quota, and there is no countdown to the expiration date.

[Additional benefits] Although this model itself is free, if you also want to experience other paid top models of Xiaomi (such as MIMO V2.5 dialogue model), I am currently using the MIMO open platform, register as a new user through my invitation code, you can get the $2 API Experience gold. • Invitation code: tue76x • Registration link: https://platform.xiaomimimo.com?ref=tue76x • Exchange method: Click the entrance to the lower left of the console to fill in after registration, and the experience bonus Valid for 40 days.

Try it in your browser

Pick a model, paste your own free key, and run. Your key is sent once to call the provider and never stored on our servers.

Pick a model, paste your own free key, and run. Your key is sent once to call the provider and never stored on our servers.

Code Examples

python
import os
import base64
from openai import OpenAI

client = OpenAI(
    api_key=os.environ.get("MIMO_API_KEY"),
    base_url="https://api.xiaomimimo.com/v1"
)

with open("sample.mp3", "rb") as f:
    voice_base64 = base64.b64encode(f.read()).decode("utf-8")

completion = client.chat.completions.create(
    model="mimo-v2.5-tts-voiceclone",
    messages=[
        {"role": "user", "content": ""},
        {"role": "assistant", "content": "This is my cloned voice speaking."}
    ],
    audio={
        "format": "wav",
        "voice": f"data:audio/mpeg;base64,{voice_base64}"
    }
)