processing

class Filter(node, coef=0.0)

Bases: object

Parameters
  • node – The node whos output should be filtered

  • coef (float) – The filter coefficient

get_sample(time)
Parameters

time (float) – The time in seconds of which the sample should be gotten

Returns

A PCM value for the node at the given time

Return type

float

class Lim(node, roll_off=100.0)

Bases: object

Parameters
  • node – The node whos output should be limited

  • roll_off (float) – The intensity of the limiter

get_sample(time)
Parameters

time (float) – The time in seconds of which the sample should be gotten

Returns

A PCM value for the node at the given time

Return type

float