Archives July 28, 2014
GStreamer Level Plugin Monitoring
Written by
on
in
Snaking,
Tuxedo.
So you have an audio stream where you'd like to get a human-friendly readout of the current audio level. You add a level component, but how do you actually get the level messages it generates?
bus.add_signal_watch() bus.connect( 'message', self.on_level )
It really seems that you *should* be able to use element.connect(), but there doesn't seem ...