2020-10-24 14:04:33 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% block content_inner %}
|
2021-04-04 22:14:30 +00:00
|
|
|
<h3 class="h5">Audio Outputs</h3>
|
2021-04-17 20:28:57 +00:00
|
|
|
<p>
|
2021-05-26 23:18:35 +00:00
|
|
|
<strong>Please note:</strong> Currently BAPSicle does not support choosing which Host API is used. Only supported options can be selected.
|
|
|
|
<br>
|
|
|
|
<strong>On MacOS:</strong> The available inputs will not update automatically, the server must be restarted.
|
|
|
|
</p>
|
|
|
|
<h4 class="h5">Currently Selected</h4>
|
|
|
|
<p>
|
|
|
|
{% for channel in data.channels %}
|
|
|
|
<strong>Channel {{channel.channel}}:</strong> {% if channel.output %}{{channel.output}}{% else %}Default Audio Device{% endif %}<br>
|
|
|
|
{% endfor %}
|
2021-04-17 20:28:57 +00:00
|
|
|
</p>
|
2021-04-14 12:43:58 +00:00
|
|
|
{% for host_api in data.outputs %}
|
|
|
|
{{host_api.name}}
|
|
|
|
<br>
|
|
|
|
<code>
|
|
|
|
{% for output in host_api.output_devices %}
|
2021-04-14 13:39:53 +00:00
|
|
|
{% if host_api.usable %}
|
2021-04-04 22:14:30 +00:00
|
|
|
Set for:
|
2021-04-14 12:43:58 +00:00
|
|
|
{% for channel in data.channels %}
|
2021-05-26 23:18:35 +00:00
|
|
|
{% if channel.output == output.name %}
|
|
|
|
<strong>Channel {{channel.channel}}</strong>
|
|
|
|
{% else %}
|
2021-04-14 12:43:58 +00:00
|
|
|
<a href="/player/{{channel.channel}}/output/{{output.name}}">Channel {{channel.channel}}</a>
|
2021-05-26 23:18:35 +00:00
|
|
|
{% endif %}
|
2021-04-14 12:43:58 +00:00
|
|
|
{% endfor %}
|
2021-04-14 13:39:53 +00:00
|
|
|
-
|
|
|
|
{% endif %}{% if output.name %}{{output.name}}{% else %}System Default Output{% endif %}<br>
|
2020-10-24 14:04:33 +00:00
|
|
|
{% endfor %}
|
2021-04-14 12:43:58 +00:00
|
|
|
</code>
|
|
|
|
{% endfor %}
|
2020-11-05 18:59:28 +00:00
|
|
|
{% endblock %}
|