{% extends "base.html" %} {% block title %}abogen ยท Voice mixer{% endblock %} {% block content %}

Voice mixer

Blend multiple voices, store them as reusable profiles, and reuse them in the dashboard form.

Saved profiles

{% if profiles %}
    {% for profile in profiles %}
  • {{ profile.name }}

    Language: {{ languages.get(profile.language, profile.language|upper) }}

    Formula: {{ profile.formula }}

  • {% endfor %}
{% else %}

No saved profiles yet. Use the form to create one.

{% endif %}

Create or update

Use voice_name*weight segments joined with +. Weights will be normalised automatically.

{% for voice in voices %} {{ voice }} {% endfor %}
{% endblock %}