summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2012-09-29 11:22:22 +0200
committerChristian Pointner <equinox@spreadspace.org>2012-09-29 11:22:22 +0200
commit7b40d88bf05cfc53e62dddf2dcef80261f5e708e (patch)
treed69103ca9967edc34908a24cebd3e4d089582ef2 /templates
parentminor change (diff)
flow as 4 sections, introducing audiorates
Diffstat (limited to 'templates')
-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>