summaryrefslogtreecommitdiff
path: root/templates/flumotion/default/planet.xml
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2012-10-17 20:04:58 +0200
committerChristian Pointner <equinox@spreadspace.org>2012-10-17 20:04:58 +0200
commit3b2828e86d0551af3964000b901c684be26d67c9 (patch)
tree876dafbcdd9705fa171a9de0893a08b06c56bd74 /templates/flumotion/default/planet.xml
parentmoved template parameter to config file (diff)
moved output to output/<format>
Diffstat (limited to 'templates/flumotion/default/planet.xml')
-rw-r--r--templates/flumotion/default/planet.xml53
1 files changed, 53 insertions, 0 deletions
diff --git a/templates/flumotion/default/planet.xml b/templates/flumotion/default/planet.xml
new file mode 100644
index 0000000..c1633ee
--- /dev/null
+++ b/templates/flumotion/default/planet.xml
@@ -0,0 +1,53 @@
+<?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['input'].items() %}
+{% include '%s.xml' % component.type %}
+{% endfor %}
+
+<!-- encoding -->
+ <!-- audio -->
+{% for name, component in flow['encoder_audio'].items() %}
+{% include '%s.xml' % component.type %}
+{% endfor %}
+ <!-- video -->
+{% for name, component in flow['encoder_video'].items() %}
+{% include '%s.xml' % component.type %}
+{% endfor %}
+
+<!-- muxing -->
+{% for name, component in flow['muxer'].items() %}
+{% include '%s.xml' % component.type %}
+{% endfor %}
+
+<!-- repeater -->
+{% for name, component in flow['repeater'].items() %}
+{% include '%s.xml' % component.type %}
+{% endfor %}
+
+<!-- streaming -->
+{% for name, component in flow['streamer'].items() %}
+{% include '%s.xml' % component.type %}
+{% endfor %}
+ </flow>
+
+</planet>