BAPSicle/ui-templates/config_player.html

79 lines
2.3 KiB
HTML
Raw Normal View History

{% extends 'base.html' %}
{% block content_inner %}
2021-04-04 22:14:30 +00:00
<h3 class="h5">Audio Outputs</h3>
<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 output devices will not update automatically, the BAPSicle server must be restarted.
2021-05-26 23:18:35 +00:00
</p>
<h4 class="h5">Currently Selected</h4>
<p>
{% for channel in data.channels %}
<strong>Player {{loop.index0}}:</strong>
{% if channel %}
{% if channel.output %}
{{channel.output}}
{% else %}
Default Audio Device
{% endif %}
{% if not channel.initialised %}
<code> - <strong>ERROR:</strong> Player did not start, potentially configured sound output is missing? Check <a href="/alerts">Alerts</a>.</code>
{% endif %}
{% else %}
<code> - <strong>ERROR:</strong> Player did not respond, likely it is dead :/ Check <a href="/alerts">Alerts</a>.</code>
{% endif %}
<br>
2021-05-26 23:18:35 +00:00
{% endfor %}
<br/>
<code>
Set for:
{% for channel in data.channels if channel %}
<a href="/player/{{channel.channel}}/output/None">Player {{channel.channel}}</a> /
{% endfor %}
Default Audio Output
</code>
</p>
{% if data.sdl_direct %}
Linux (Pulse Audio)
<br>
<code>
{% for output in data.outputs %}
Set for:
{% for channel in data.channels %}
{% if not channel %}
Player {{loop.index0}}
{% elif channel.output == output %}
<strong>Player {{channel.channel}}</strong>
{% else %}
<a href="/player/{{channel.channel}}/output/{{output}}">Player {{channel.channel}}</a>
{% endif %}
/
{% endfor %}
{% if output %}{{output}}{% else %}System Default Output{% endif %}<br>
{% endfor %}
</code>
{% else %}
{% for host_api in data.outputs %}
{{host_api.name}}
<br>
<code>
{% for output in host_api.output_devices %}
{% if host_api.usable %}
2021-04-04 22:14:30 +00:00
Set for:
{% for channel in data.channels %}
{% if not channel %}
Player {{loop.index0}}
{% elif channel.output == output.name %}
<strong>Player {{channel.channel}}</strong>
2021-05-26 23:18:35 +00:00
{% else %}
<a href="/player/{{channel.channel}}/output/{{output.name}}">Player {{channel.channel}}</a>
2021-05-26 23:18:35 +00:00
{% endif %}
/
{% endfor %}
{% endif %}{% if output.name %}{{output.name}}{% else %}System Default Output{% endif %}<br>
{% endfor %}
</code>
{% endfor %}
{% endif %}
{% endblock %}