Search found 13 matches
- Sun Aug 11, 2013 4:41 pm
- Forum: Nyquist
- Topic: killing nyquist with extract
- Replies: 10
- Views: 4108
killing nyquist with extract
The following code reliably causes Nyquist to terminate. My intention is to create a butt splice between x-snd and y-snd after 0.25 seconds. Instead, I seem to be exposing my ignorance of (extract ...) or some other fundamental Nyquist concept. Any hints? ;;; butt splice test (setq x-snd (pluck 52 1...
- Sat Jun 15, 2013 9:10 pm
- Forum: Nyquist
- Topic: examples of using *warp* and *transpose* in an instrument
- Replies: 1
- Views: 1540
examples of using *warp* and *transpose* in an instrument
I've designed an instrument that (theoretically) offers independent control over (attack / decay / sustain / release) and pitch. If I understand correctly, it would be idiomatically correct to use *warp* and *transpose* (respectively) to control those parameters. As I imagine it, by default the inst...
- Sat Jun 08, 2013 4:08 pm
- Forum: Nyquist
- Topic: accessing two tracks in Nyquist from Audacity
- Replies: 1
- Views: 1883
accessing two tracks in Nyquist from Audacity
If I want to (say) multiply two adjacent Audacity tracks in Nyquist, how do I access them in Nyquist? I know that I could create a single stereo track out of the two mono tracks, and then do (vector (aref s 0) (vector (aref s 1)), but perhaps there's an easier way?