summaryrefslogtreecommitdiff
path: root/templates/example
diff options
context:
space:
mode:
Diffstat (limited to 'templates/example')
-rw-r--r--templates/example/planet.xml18
1 files changed, 17 insertions, 1 deletions
diff --git a/templates/example/planet.xml b/templates/example/planet.xml
index ea5d306..0d5e8fc 100644
--- a/templates/example/planet.xml
+++ b/templates/example/planet.xml
@@ -10,7 +10,23 @@
</atmosphere>
<flow name="{{ globals.name }}">
-{% for name, component in flow.items() %}
+<!-- raw-input, resizing and resampling -->
+{% for name, component in flow['input'].items() %}
+{% include '%s.xml' % component.type %}
+{% endfor %}
+
+<!-- encoding -->
+{% for name, component in flow['encoder'].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>