{% 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 output devices will not update automatically, the BAPSicle server must be restarted.

Currently Selected

{% for channel in data.channels %} Player {{channel.channel}}: {% if channel.output %} {{channel.output}} {% else %} Default Audio Device {% endif %} {% if not channel.initialised %} - ERROR: Player did not start, potentially missing sound output? {% endif %}
{% endfor %}
Set for: {% for channel in data.channels %} Player {{channel.channel}} / {% endfor %} Default Audio Output

{% 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 %} Player {{channel.channel}} {% else %} Player {{channel.channel}} {% endif %} / {% endfor %} {% endif %}{% if output.name %}{{output.name}}{% else %}System Default Output{% endif %}
{% endfor %}
{% endfor %} {% endblock %}