{% 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 {{loop.index0}}:
{% if channel %}
{% if channel.output %}
{{channel.output}}
{% else %}
Default Audio Device
{% endif %}
{% if not channel.initialised %}
- ERROR: Player did not start, potentially configured sound output is missing? Check Alerts.
{% endif %}
{% else %}
- ERROR: Player did not respond, likely it is dead :/ Check Alerts.
{% endif %}
{% endfor %}
Set for:
{% for channel in data.channels if channel %}
Player {{channel.channel}} /
{% endfor %}
Default Audio Output
{% for output in data.outputs %}
Set for:
{% for channel in data.channels %}
{% if not channel %}
Player {{loop.index0}}
{% elif channel.output == output %}
Player {{channel.channel}}
{% else %}
Player {{channel.channel}}
{% endif %}
/
{% endfor %}
{% if output %}{{output}}{% else %}System Default Output{% endif %}
{% endfor %}
{% else %}
{% 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 not channel %}
Player {{loop.index0}}
{% elif 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 %}
{% endif %}
{% endblock %}