summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2018-02-01 08:45:00 +0100
committerChristian Pointner <equinox@spreadspace.org>2018-02-01 08:45:00 +0100
commit271f4e4b7cc3369cbe2b68c8b3da4a160bfa8381 (patch)
tree5a95e22ddbd452c5d39f44338085af4b7bd223d1 /templates
parentadded full-hd profile (diff)
creating xml works now
Diffstat (limited to 'templates')
-rw-r--r--templates/flumotion/default/planet.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/flumotion/default/planet.xml b/templates/flumotion/default/planet.xml
index 7a45913..9c4e31a 100644
--- a/templates/flumotion/default/planet.xml
+++ b/templates/flumotion/default/planet.xml
@@ -20,37 +20,37 @@
<flow name="{{ globals.name }}">
<!-- raw-input, resizing and resampling -->
-{% for name, component in flow['input'].items() %}
+{% for name, component in flow['inputs'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
<!-- encoding -->
<!-- audio -->
-{% for name, component in flow['encoder_audio'].items() %}
+{% for name, component in flow['encoders-audio'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
<!-- video -->
-{% for name, component in flow['encoder_video'].items() %}
+{% for name, component in flow['encoders-video'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
<!-- muxing -->
-{% for name, component in flow['muxer'].items() %}
+{% for name, component in flow['muxers'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
<!-- repeater -->
-{% for name, component in flow['repeater'].items() %}
+{% for name, component in flow['repeaters'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
<!-- streaming -->
-{% for name, component in flow['streamer'].items() %}
+{% for name, component in flow['streamers'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
<!-- recording -->
-{% for name, component in flow['recorder'].items() %}
+{% for name, component in flow['recorders'].items() %}
{% include '%s.xml' % component.type %}
{% endfor %}
</flow>