summaryrefslogtreecommitdiff
path: root/templates/flumotion/default/soundcard.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/soundcard.xml
parentmoved template parameter to config file (diff)
moved output to output/<format>
Diffstat (limited to 'templates/flumotion/default/soundcard.xml')
-rw-r--r--templates/flumotion/default/soundcard.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/flumotion/default/soundcard.xml b/templates/flumotion/default/soundcard.xml
new file mode 100644
index 0000000..23df8a4
--- /dev/null
+++ b/templates/flumotion/default/soundcard.xml
@@ -0,0 +1,24 @@
+ <component name="{{ name }}_raw"
+ type="soundcard-producer"
+ label="{{ component.desc }} (raw)"
+ worker="{{ component.worker }}"
+ project="flumotion"
+ version="{{ globals.version }}">
+%% for name, value in component.properties.items()
+ <property name="{{ name }}">{{ value }}</property>
+%% endfor
+ <clock-master>{{ component.master }}</clock-master>
+ </component>
+
+ <component name="{{ name }}"
+ type="pipeline-converter"
+ label="{{ component.desc }} (normalized)"
+ worker="{{ component.worker }}"
+ project="flumotion"
+ version="{{ globals.version }}">
+ <eater name="default">
+ <feed alias="default">{{ name }}_raw</feed>
+ </eater>
+ <property name="pipeline">audioconvert ! audio/x-raw-int,rate=(int)48000,width=16,depth=16,channels=2</property>
+ <clock-master>false</clock-master>
+ </component>