Skip to content

Commit

Permalink
fix audiobro1 ghost falling to C too early
Browse files Browse the repository at this point in the history
  • Loading branch information
dansgithubuser committed Mar 24, 2024
1 parent e95a37a commit 83f8440
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ Driver components are responsible for calling `run` on other components. In part
The `audio` component is the driver component for interactive audio.

## todo
- audiobro1 why ghost drops to C?
- audiobro2 sweeps missing?
- stereo

Expand Down
Binary file modified assets/midis/audiobro1.mid
Binary file not shown.
Binary file modified assets/musescore/audiobro1.mscz
Binary file not shown.
2 changes: 2 additions & 0 deletions assets/systems/audiobro1.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
parser = argparse.ArgumentParser()
parser.add_argument('--live', '-l', action='store_true')
parser.add_argument('--start', '-s')
parser.add_argument('--run-size', type=int)
args = parser.parse_args()

class Voice:
Expand Down Expand Up @@ -48,6 +49,7 @@ def connect(self, other):

# init
driver = dlal.Audio()
if args.run_size: driver.run_size(int(args.run_size))
comm = dlal.Comm()
Voice('drum', 'buf')
Voice('piano', 'sonic', 'lfo', 'mul', 'buf_1', 'buf_2')
Expand Down

0 comments on commit 83f8440

Please sign in to comment.