{% extends "base.html" %} {% block title %}Settings · ytclip{% endblock %} {% block content %}

Settings

{% if flash_connected %}
Connected to {{ flash_connected | title }} successfully.
{% endif %} {% if flash_error %}
{{ flash_error }}
{% endif %}

Platform Publishing

Connect accounts to publish clips directly. Add client_id and client_secret under [platforms.<name>] in your config.toml to enable a platform.

{% for p in platforms %}
{{ p.display_name }} {% if p.connected %} Connected {% elif p.configured %} Ready {% else %} Not configured {% endif %}
{% if p.connected %}
{% if p.user_avatar %} {% else %} {% endif %} {{ p.user_handle or "Connected" }}
{% elif not p.configured %}

Add credentials to config.toml to enable.

{% endif %}
{% endfor %}

Brand Kits

Save watermark, subtitle, and format settings as named profiles. Apply a kit in the Clip editor with one click.

{% if not brand_kits %}

No brand kits yet. Create one above.

{% else %} {% for kit in brand_kits %}
{% if kit.logo_path %} {% else %} {% endif %} {{ kit.name }}
{{ kit.default_format.upper() }} {{ kit.subtitle_color }} {{ kit.subtitle_font_size }}px
{% endfor %} {% endif %}
{% endblock %}