Input

Input(chnl=0, mul=1, add=0)

Read from a numbered channel in an external audio signal.

Parent class : PyoObject

Parameters:

    chnl : int, optional
        Input channel to read from. Defaults to 0.

Notes:

    Requires that the Server's duplex mode is set to 1.

Examples:

    >>> s = Server(duplex=1).boot()
    >>> s.start()
    >>> a = Input(chnl=0)
    >>> b = Delay(a, delay=.25, feedback=.5, mul=.5).out()