{% extends 'base.html' %} {% block title %}Audio Settings - Quizzical Beats{% endblock %} {% block content %}

Custom Audio Settings

Upload or generate your own intro, outro, and replay announcements for quizzes.

Intro Audio

This audio plays at the beginning of your music quiz

Current Setting

{% if current_user.intro_mp3 %}

Custom intro audio is active

{% else %}

Using default intro audio

{% endif %}

Customize

Option 1: Upload MP3

Option 2: Generate with Text-to-Speech

{% if has_tts_services %}

{{ selected_service.description if selected_service else '' }}

{% if selected_service.id == 'openai' and selected_service.models %}
{% endif %} {% if selected_service.id == 'elevenlabs' and selected_service.models %}
{% endif %} {% if selected_service.id == 'elevenlabs' and selected_service.settings %}
Voice Settings
More variable More stable
More unique More similar
{% endif %}
{% else %}

Text-to-speech generation requires API credentials (AWS Polly, OpenAI, or ElevenLabs). Contact your administrator to enable this feature.

{% endif %}

Outro Audio

This audio plays at the end of your music quiz

Current Setting

{% if current_user.outro_mp3 %}

Custom outro audio is active

{% else %}

Using default outro audio

{% endif %}

Customize

Option 1: Upload MP3

Option 2: Generate with Text-to-Speech

{% if has_tts_services %}

{{ selected_service.description if selected_service else '' }}

{% if selected_service.id == 'openai' and selected_service.models %}
{% endif %} {% if selected_service.id == 'elevenlabs' and selected_service.models %}
{% endif %} {% if selected_service.id == 'elevenlabs' and selected_service.settings %}
Voice Settings
More variable More stable
More unique More similar
{% endif %}
{% else %}

Text-to-speech generation requires API credentials (AWS Polly, OpenAI, or ElevenLabs). Contact your administrator to enable this feature.

{% endif %}

Replay Audio

This audio plays before replaying all songs at the end of the quiz

Current Setting

{% if current_user.replay_mp3 %}

Custom replay audio is active

{% else %}

Using default replay audio

{% endif %}

Customize

Option 1: Upload MP3

Option 2: Generate with Text-to-Speech

{% if has_tts_services %}

{{ selected_service.description if selected_service else '' }}

{% if selected_service.id == 'openai' and selected_service.models %}
{% endif %} {% if selected_service.id == 'elevenlabs' and selected_service.models %}
{% endif %} {% if selected_service.id == 'elevenlabs' and selected_service.settings %}
Voice Settings
More variable More stable
More unique More similar
{% endif %}
{% else %}

Text-to-speech generation requires API credentials (AWS Polly, OpenAI, or ElevenLabs). Contact your administrator to enable this feature.

{% endif %}
Back to Profile
{% endblock %} {% block scripts %} {% endblock %}