Created
November 27, 2020 20:28
-
-
Save x42/f36aa2e898a426657e571a1cd62a92cc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/tmp/bipscript/build/bipscript | |
synth <- Lv2.Plugin("http://gareus.org/oss/lv2/b_synth") | |
#eq <- Lv2.Plugin("http://gareus.org/oss/lv2/fil4#stereo") | |
input <- Midi.Input("my_input") | |
output <- Audio.StereoOutput("out", true) | |
input => synth => output | |
#input => synth => eq => output | |
Script.stayAlive() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment