{% extends 'base.html' %} {% block content_inner %}
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.
{% for channel in data.channels %}
Player {{channel.channel}}: {% if channel.output %}{{channel.output}}{% else %}Default Audio Device{% endif %}
{% endfor %}
Set for:
{% for channel in data.channels %}
Player {{channel.channel}} /
{% endfor %}
Default Audio Output
{% 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 %}