Re: [CM] Snd Scheme note lists

2016-06-20 Thread bil
If you want to concatenate several with-sounds into one, just concatenate the instrument calls, with some variable holding the section's start time. ___ Cmdist mailing list Cmdist@ccrma.stanford.edu https://cm-mail.stanford.edu/mailman/listinfo/cmdist

Re: [CM] Snd Scheme note lists

2016-06-20 Thread andersvi
Hi James. J> I was doing that in lisp and CLM using "with-mix" but don't seem J> to see that thru scheme. Seems like sound-let might be close: https://ccrma.stanford.edu/software/snd/snd/sndscm.html#sound-let -anders ___ Cmdist mailing list

[CM] Snd Scheme note lists

2016-06-20 Thread James Hearon
Hi, For Snd using Scheme what would be best workflow or best practices for stitching together several with-sound calls or note lists? Ex. I have my insts loading from a separate .scm file using the "load" command and ten or so with-sound calls in a separate .scm file. I was doing that in lis