DCBlock(input, mul=1, add=0)
Implements the DC blocking filter.
Parent class : PyoObject
Parameters:
input : PyoObject Input signal to filter.
Methods:
setInput(x, fadetime) : Replace the `input` attribute.
Attributes:
input : PyoObject. Input signal to filter.
Examples:
>>> s = Server().boot() >>> s.start() >>> n = Noise(.05) >>> w = Delay(n, delay=0.01, feedback=.995, mul=.5) >>> f = DCBlock(w).out()
Methods details:
DCBlock.setInput(x, fadetime=0.05): Replace the `input` attribute. Parameters: x : PyoObject New signal to process. fadetime : float, optional Crossfade time between old and new input. Default to 0.05.