blob: 547531c3fe0c61d8d94a4699d17ade56f2709341 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<planet name="{{ globals.name }}">
<manager name="{{ globals.name }}">
</manager>
<atmosphere>
{% for name, component in atmosphere.items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
</atmosphere>
<flow name="{{ globals.name }}">
<!-- raw-input, resizing and resampling -->
{% for name, component in flow['input'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
<!-- encoding -->
<!-- video -->
{% for name, component in flow['encoder_video'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
<!-- audio -->
{% for name, component in flow['encoder_audio'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
<!-- muxing -->
{% for name, component in flow['muxer'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
<!-- streaming -->
{% for name, component in flow['streamer'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
</flow>
</planet>
|