summaryrefslogtreecommitdiff
path: root/templates/flumotion/default/planet.xml
blob: 9c4e31a140167c8362ef014df06a96f03ce25911 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<planet name="{{ globals.name }}">

  <manager name="{{ globals.name }}">
%% for name, value in globals.manager.items()
%%   if name != 'machine'
    <{{ name }}>{{ value }}</{{ name }}>
%%   endif
%% endfor
    <component name="manager-bouncer" type="htpasswdcrypt-bouncer">
      <property name="filename">/etc/flumotion/{{ globals.name }}.passwd</property>
    </component>
  </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['inputs'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}

<!-- encoding -->
  <!-- audio -->
{% for name, component in flow['encoders-audio'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
  <!-- video -->
{% for name, component in flow['encoders-video'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}

<!-- muxing -->
{% for name, component in flow['muxers'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}

<!-- repeater -->
{% for name, component in flow['repeaters'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}

<!-- streaming -->
{% for name, component in flow['streamers'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}

<!-- recording -->
{% for name, component in flow['recorders'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
  </flow>

</planet>