{% extends "base.html" %} {% import "partials/macros.html" as m %} {% block title %}Settings -- ProducerOS{% endblock %} {% block page_heading %}Settings{% endblock %} {% block content %}

About this installation

Version: {{ app_version }}

Environment: {{ app_env }}

Data directory: {{ data_dir }}

Audio analysis

{% if ffmpeg.available %} {{ m.checklist_badge("passed") }} FFmpeg detected -- loudness/true-peak analysis available. {% else %} {{ m.checklist_badge("warning") }} FFmpeg not detected. Basic metadata (duration, sample rate, bit depth) still works via Mutagen. Install FFmpeg and restart to enable loudness analysis. {% endif %}

Network & LAN mode

Manage LAN mode, pairing, and paired devices.

Open LAN settings

Local MCP server

Status: {% if mcp_enabled %}{{ m.checklist_badge("passed") }} Enabled ({{ mcp_bind }}:{{ mcp_port }}){% else %}Disabled{% endif %}

Enable or disable in config.toml under [mcp] enabled = true/false, then restart ProducerOS. See docs/MCP.md.

Scanner

Manage scanner roots and review findings.

Open Scanner

Backup & restore

Open Backup & Restore

Visible project stages

Default system stage identifiers are always preserved even if hidden here.

{% for s in all_states %} {% endfor %}
{% if can_shut_down %}

Close ProducerOS

ProducerOS keeps running in the background even after you close this browser tab, so that reopening it is instant. Use this to stop it completely -- worth doing before installing a ProducerOS update.

{% endif %} {% endblock %}