Package flumotion :: Package component :: Package combiners :: Package composite :: Module composite
[hide private]

Source Code for Module flumotion.component.combiners.composite.composite

 1  # -*- Mode: Python -*- 
 2  # vi:si:et:sw=4:sts=4:ts=4 
 3  # 
 4  # Flumotion - a streaming media server 
 5  # Copyright (C) 2004,2005,2006,2007 Fluendo, S.L. (www.fluendo.com). 
 6  # All rights reserved. 
 7   
 8  # This file may be distributed and/or modified under the terms of 
 9  # the GNU General Public License version 2 as published by 
10  # the Free Software Foundation. 
11  # This file is distributed without any warranty; without even the implied 
12  # warranty of merchantability or fitness for a particular purpose. 
13  # See "LICENSE.GPL" in the source distribution for more information. 
14   
15  # Licensees having purchased or holding a valid Flumotion Advanced 
16  # Streaming Server license may use this file in accordance with the 
17  # Flumotion Advanced Streaming Server Commercial License Agreement. 
18  # See "LICENSE.Flumotion" in the source distribution for more information. 
19   
20  # Headers in this file shall remain intact. 
21   
22  from flumotion.component import feedcomponent 
23   
24 -class Composite(feedcomponent.MultiInputParseLaunchComponent):
25 logCategory = 'comb-composite' 26
27 - def init(self):
28 self._pad_names = {} 29 self._stream_props = {}
30
31 - def _parse_stream_props(self, properties):
32 props = self._stream_props 33 config = properties.get('input', []) 34 35 for fp in config: 36 fname = fp['feeder-alias'] 37 props[fname] = dict(xpos=fp.get('position-left', 0), 38 ypos=fp.get('position-top', 0), 39 zorder=fp.get('z-order', None), 40 alpha=fp.get('alpha', 1.0))
41
42 - def get_pipeline_string(self, properties):
43 self._parse_stream_props(properties) 44 45 # naming ffmpegcsp elements so we can easier identify mixer pads 46 etmpl = '@ eater:%s @ ! ffmpegcolorspace name=csc-%s ! mixer. ' 47 pipeline = ('videomixer name=mixer %s mixer.' % 48 ' '.join([etmpl % (a, a) for a in self.eaters])) 49 return pipeline
50
51 - def configure_pipeline(self, pipeline, properties):
52 mixer = pipeline.get_by_name('mixer') 53 54 for p in mixer.sink_pads(): 55 # get the coresponding ffmpegcsp's name and strip the 56 # 'csc-' prefix 57 peername = p.get_peer().get_parent().get_name()[4:] 58 if peername in self.eaters: 59 self._pad_names[peername] = p.get_name() 60 61 cfg = self._stream_props.get(peername, None) 62 if cfg: 63 for k, v in cfg.items(): 64 if v is not None: 65 p.set_property(k, v)
66