Merge branch 'develop-1.0' of git.radiocampus.be:rc/aircox into develop-1.0

This commit is contained in:
bkfox 2022-07-13 14:08:20 +02:00
commit 9c147b2a6d

View File

@ -77,9 +77,9 @@ set("{{ key|safe }}", {{ value|safe }})
{% block sources %}
{% with source=streamer.dealer %}
live = interactive('{{ source.id }}',
live = audio_to_stereo(interactive('{{ source.id }}',
request.queue(id="{{ source.id }}_queue")
)
))
{% endwith %}
@ -89,12 +89,12 @@ streams = rotate(id="streams", [
{% with stream=source.stream %}
{% if stream.delay %}
delay({{ stream.delay }}.,
stream("{{ source.id }}", "{{ source.path }}")),
audio_to_stereo(stream("{{ source.id }}", "{{ source.path }}"))),
{% elif stream.begin and stream.end %}
at({ {{stream.begin}}-{{stream.end}} },
stream("{{ source.id }}", "{{ source.path }}")),
audio_to_stereo(stream("{{ source.id }}", "{{ source.path }}"))),
{% else %}
stream("{{ source.id }}", "{{ source.path }}"),
audio_to_stereo(stream("{{ source.id }}", "{{ source.path }}")),
{% endif %}
{% endwith %}
{% endif %}