{% extends "base.html" %} {% block title %}abogen · TTS Overrides{% endblock %} {% block content %}

TTS Overrides & Pronunciation

Review and refine stored pronunciations so recurring names sound right in every project.

Reset

Looking for saved speaker rosters instead? Manage speaker presets.

Overrides for {{ language_label }}

Showing {{ stats.filtered }} of {{ stats.total }} stored overrides · {{ stats.with_pronunciation }} with pronunciations · {{ stats.with_voice }} with assigned voices

{% if status_message or status_error %}
{{ status_error or status_message }}
{% endif %}

Add manual override

Create pronunciations or assign default voices without preparing a job.

{% if overrides %}
{% for override in overrides %} {% set form_id = "override-form-" ~ loop.index %} {% endfor %}
Token Pronunciation Voice Usage Last updated Preview Actions
{{ override.token }} {% set current_voice = override.voice or '' %} {% set known_voice = namespace(value=False) %} {% if current_voice %} {% if current_voice in options.voice_catalog_map %} {% set known_voice.value = True %} {% else %} {% for profile in options.voice_profile_options %} {% if current_voice == 'profile:' ~ profile.name %} {% set known_voice.value = True %} {% endif %} {% endfor %} {% endif %} {% endif %} {{ override.usage_count }} {{ override.updated_at_label }}
{% else %}

No overrides matched your filters. Try adjusting the search or create overrides from the Entities step while preparing a job.

{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}