{% extends 'base.html' %} {% block content_inner %}

Audio Outputs

Please note: Currently BAPSicle does not support choosing which Host API is used. Only supported options can be selected.
On MacOS: The available inputs will not update automatically, the server must be restarted.

Currently Selected

{% for channel in data.channels %} Channel {{channel.channel}}: {% if channel.output %}{{channel.output}}{% else %}Default Audio Device{% endif %}
{% endfor %}

{% for host_api in data.outputs %} {{host_api.name}}
{% for output in host_api.output_devices %} {% if host_api.usable %} Set for: {% for channel in data.channels %} {% if channel.output == output.name %} Channel {{channel.channel}} {% else %} Channel {{channel.channel}} {% endif %} {% endfor %} - {% endif %}{% if output.name %}{{output.name}}{% else %}System Default Output{% endif %}
{% endfor %}
{% endfor %} {% endblock %}