TorToiSe TTS

  • v1

regisin/tortoise-tts


Deploy on Banana for fast, affordable, and easy deployment of TorToiSe TTS. Get results fast with our user-friendly interface, unbeatable pricing and speed. Click the button above to deploy this model now!


Readme


INPUT

{
  "text": "Joining two modalities results in a surprising increase in generalization! What would happen if we combined them all?",
  "voice": "custom",
  "preset": "fast",
  "custom_voice_url": "<url to wav file>"
}

OUTPUT

{
  "audio": "data:audio/mpeg;base64,iVBORw0KGgoAAAANSUhEUgAACSgAAASwCAYA..."
}

CODE SNIPPETS


import banana_dev as banana

model_inputs = {
  "text": "Joining two modalities results in a surprising increase in generalization! What would happen if we combined them all?",
  "voice": "custom",
  "preset": "fast",
  "custom_voice_url": "<url to wav file>"
}

api_key = "YOUR_API_KEY"
model_key = "YOUR_MODEL_KEY"

# Run the model
out = banana.run(api_key, model_key, model_inputs)

logo