-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
114 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
title: HistoryBufferWriter node documentation | ||
description: HistoryBufferWriter: Writes a rolling history buffer of a given duration. At a given moment in time, the contents of the buffer will be equal to the past N seconds of the audio generated by `input`. This is useful for (e.g.) a visual display of a rolling waveform or LFO window. `downsample` can be used to downsample the input; for example, with `downsample` of 10, a 1-second buffer can be used to display 10 seconds of historical audio. | ||
|
||
[Reference library](../../index.md) > [Buffer](../index.md) > [HistoryBufferWriter](index.md) | ||
|
||
# HistoryBufferWriter | ||
|
||
```python | ||
HistoryBufferWriter(buffer=None, input=0.0, downsample=1) | ||
``` | ||
|
||
Writes a rolling history buffer of a given duration. At a given moment in time, the contents of the buffer will be equal to the past N seconds of the audio generated by `input`. This is useful for (e.g.) a visual display of a rolling waveform or LFO window. `downsample` can be used to downsample the input; for example, with `downsample` of 10, a 1-second buffer can be used to display 10 seconds of historical audio. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
title: Accumulator node documentation | ||
description: Accumulator: Accumulator with decay. | ||
|
||
[Reference library](../../index.md) > [Envelope](../index.md) > [Accumulator](index.md) | ||
|
||
# Accumulator | ||
|
||
```python | ||
Accumulator(strike_force=0.5, decay_coefficient=0.9999, trigger=None) | ||
``` | ||
|
||
Accumulator with decay. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
title: Bus node documentation | ||
description: Bus: Bus is a node with a fixed number of input channels and arbitrary number of inputs, used to aggregate multiple sources. It is similar to Sum, but with a defined channel count that does not adapt to its inputs. | ||
|
||
[Reference library](../../index.md) > [Operators](../index.md) > [Bus](index.md) | ||
|
||
# Bus | ||
|
||
```python | ||
Bus(num_channels=1) | ||
``` | ||
|
||
Bus is a node with a fixed number of input channels and arbitrary number of inputs, used to aggregate multiple sources. It is similar to Sum, but with a defined channel count that does not adapt to its inputs. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
title: ChannelOffset node documentation | ||
description: ChannelOffset: Offsets the input by a specified number of channels. With an N-channel input and an offset of M, the output will have M+N channels. | ||
|
||
[Reference library](../../index.md) > [Operators](../index.md) > [ChannelOffset](index.md) | ||
|
||
# ChannelOffset | ||
|
||
```python | ||
ChannelOffset(offset=0, input=None) | ||
``` | ||
|
||
Offsets the input by a specified number of channels. With an N-channel input and an offset of M, the output will have M+N channels. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
title: SelectInput node documentation | ||
description: SelectInput: Pass through the output of one or more `inputs`, based on the integer input index specified in `index`. Unlike `ChannelSelect`, inputs may be multichannel, and `index` can be modulated in real time. | ||
|
||
[Reference library](../../index.md) > [Operators](../index.md) > [SelectInput](index.md) | ||
|
||
# SelectInput | ||
|
||
```python | ||
SelectInput(index=0) | ||
``` | ||
|
||
Pass through the output of one or more `inputs`, based on the integer input index specified in `index`. Unlike `ChannelSelect`, inputs may be multichannel, and `index` can be modulated in real time. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
title: TriggerMult node documentation | ||
description: TriggerMult: Distribute any triggers to all output nodes. | ||
|
||
[Reference library](../../index.md) > [Sequencing](../index.md) > [TriggerMult](index.md) | ||
|
||
# TriggerMult | ||
|
||
```python | ||
TriggerMult(a=0) | ||
``` | ||
|
||
Distribute any triggers to all output nodes. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
title: TriggerRoundRobin node documentation | ||
description: TriggerRoundRobin: Relay trigger() events to a single node from the list of connected outputs, with `direction` determining the direction: 1 (or above) = move forwards by N, -1 = move backwards by N, 0 = stationary. | ||
|
||
[Reference library](../../index.md) > [Sequencing](../index.md) > [TriggerRoundRobin](index.md) | ||
|
||
# TriggerRoundRobin | ||
|
||
```python | ||
TriggerRoundRobin(direction=1) | ||
``` | ||
|
||
Relay trigger() events to a single node from the list of connected outputs, with `direction` determining the direction: 1 (or above) = move forwards by N, -1 = move backwards by N, 0 = stationary. | ||
|