Created
November 27, 2020 20:50
-
-
Save x42/c8c5d350a3d0994a4f42016aa2a5bfdb 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 => eq => output | |
Script.stayAlive() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment