summaryrefslogtreecommitdiff
path: root/templates/default/flumotion/soundcard.xml.j2
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2018-02-03 03:15:56 +0100
committerChristian Pointner <equinox@spreadspace.org>2018-02-03 03:15:56 +0100
commita43d1a058491d0255fd732f2f964379f18418356 (patch)
treec97bc7414e86afb4f1e4a254d2659efb4655d39e /templates/default/flumotion/soundcard.xml.j2
parentcreating and removing worspaces works now (diff)
deploying manager to k8s works now
Diffstat (limited to 'templates/default/flumotion/soundcard.xml.j2')
-rw-r--r--templates/default/flumotion/soundcard.xml.j224
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/default/flumotion/soundcard.xml.j2 b/templates/default/flumotion/soundcard.xml.j2
new file mode 100644
index 0000000..23df8a4
--- /dev/null
+++ b/templates/default/flumotion/soundcard.xml.j2
@@ -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>