[CM] snd inf-snd.el

2016-03-01 Thread James Hearon
Hi, I trying to get inf-snd.el going for more REPL with .scm files. I'm just trying to load , edit, and evaluate a .scm file, and couldn't seem to figure out how to do that using the snd listener. I have clm working with fedora, quicklisp, emacs, and slime, but not sure how to get inf-snd.el

[CM] inf-snd.el

2016-03-02 Thread James Hearon
Message: 2 Date: Tue, 01 Mar 2016 10:36:06 -0800 From: b...@ccrma.stanford.edu To: James Hearon Cc: "cmdist@ccrma.Stanford.EDU" Subject: Re: [CM] snd inf-snd.el Message-ID: Content-Type: text/plain; charset=US-ASCII; format=flowed s7 doesn't know how to communicate with s

[CM] Snd inf-snd.el

2016-03-11 Thread James Hearon
Hi, I finally got Snd working as an emacs subjob with help from Micahel Scholz. Some of it had to do with the way the .emacs file was being called, which meant the load-path variable was not being completed properly. It's neat to be able to load a .scm script, edit it, and hear and see the res

[CM] scheme move-locsig

2016-04-28 Thread James Hearon
Hi, I'm getting fouled up with trying to pan across a heap of notes using cm patterns. I was trying to use a panning enevelope for the move-locsig degree, but something's not quite right. I tried changing the pan-env, make-env to :duration seconds thinking that would work across the whole heap

[CM] scheme move-locsig

2016-05-05 Thread James Hearon
Hi, I couldn't come up with the magic to get a pan-env working across a heap of notes with move-locsig. But I made a solution below by just passing degree only to the inst and controlling degree over the total duration of the heap from with-sound. Not elegant, but it pans across the whole hea

[CM] s7 with c

2016-05-18 Thread James Hearon
Hi, I'm stuck on figuring out compiling a simple s7 repel test in c. I'm on fedora 23. I've tried a few different things but not sure what /usr/bin/ld error is trying to tell me. gcc error: /usr/bin/ld: cannot find : No such file or directory //gcc -o repel_test repel_test.c s7.o -Wl, -e

[CM] s7 and c

2016-05-19 Thread James Hearon
re: gcc -o repel_test repel_test.c s7.o -Wl, -export-dynamic -lm -I. -ldl I think your problem is that you have a space after -Wl, -- it'a all one argument: -Wl,-export-dynamic --- Yes. Great. Thank you. I was stumped, but am now off and compiling. Regards, Jim __

[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

[CM] Scheme, larger structures

2016-07-22 Thread James Hearon
Hi, I had written about a scheme method to do something similar to CLM's with-mix for larger compositional structures using multiple instruments and Bill had replied... "If you want to concatenate several with-sounds into one, just concatenate the instrument calls, with some variable holding th

[CM] scheme, larger structures

2016-08-11 Thread James Hearon
Hi, I had written about a scheme method to do something similar to CLM's with-mix for larger compositional structures using multiple instruments and Bill had replied... "If you want to concatenate several with-sounds into one, just concatenate the instrument calls, with some variable holding th

[CM] scheme, larger structures

2016-08-22 Thread James Hearon
anders wrote... You can take the body of each of your two with-sound calls and place within one single with-sound: (let ((var '()) (aaa (make-heap '(360 800.345 1200 600))) ;freq (bbb (make-cycle '(1 1 .75 .25 .20 .15 .10 .10 .10 .10))) ;dur (ccc (make-heap '(2

[CM] s7, undefined reference errors

2016-09-19 Thread James Hearon
Hi, I was trying to get back to looking at s7 as interpreter but I'm failing to compile for some reason. I have s7.o, s7.h, and snd is working ok. But I'm getting undefined ref errors trying to compile below and a little stumped what might be going wrong? Seems like it's not finding somethi

Re: [CM] s7, undefined reference errors

2016-09-20 Thread James Hearon
Hi, snd configure... ./configure --with-s7 --with-gsl --with-motif --with-gl --with-gmp --with-alsa CFLAGS=HAVE_COMPLEX_NUMBERS CFLAGS=HAVE_COMPLEX_TRIG CFLAGS="-I/usr/include/linux/param.h" Oops, I guess I did compile with gimp. I'm not sure why I did that. Must have been something I was

[CM] numerics.scm

2016-12-01 Thread James Hearon
Hi, For numerics.scm, these seem useful. Most of them I can evaluate, but the four polynomials (xxx) I cannot seem to figure what it wants. Wondering if anyone might have success or ideas about those guys? Thank You, Jim (load "snd-16/numerics.scm") (factorial 6) -> 720 (binomial 4 2) ->

[CM] numerics

2016-12-05 Thread James Hearon
Hi, Strange about delayed email. Thank you for info on snd-test.scm re: legendre-polynomial. I see now, first argument is a vector, so all is working now in numerics.scm Regards, Jim ___ Cmdist mailing list Cmdist@ccrma.stanford.edu https://cm-mai

[CM] starting cm2

2017-01-26 Thread James Hearon
Hi, I'm having a devil of a time trying to start cm2 on f25, using SBCL and Quicklisp, and wondering if anyone might know where I'm going wrong. Quicklisp has the asdf libraries. CM2 top level dir shows a cm2.asd, so I'm confused what might be going wrong. >From SBCL, I get an .asd file err

[CM] cm2

2017-02-04 Thread James Hearon
Hi, re: cm2, with help from Adam I understand I'm supposed to load the cm2.asd. OK. I can load, and eval .lisp file from sbcl using command line, or in emacs with slime; but cannot yet figure out how to get .cm or .scm files working in cm2. Seems like .scm files are in the sources, but not s

[CM] s7 wrap c func with scheme

2017-02-24 Thread James Hearon
Hi, I had a question about wrapping a c func with scheme, s7. I'm trying to understand how to wrap the declared function from the .h file with scheme in a .scm file (mywrapper.scm) so that it can be called from s7 and use the shared library. > (load mywrapper.scm) > (myfunction) > (exit) I h

[CM] s7 wrap c function with scheme

2017-03-01 Thread James Hearon
Hi, The wrapper example below works great. Seems like -DWITH_MAIN, and -DUSE_SND=0 adds some special help. Thanks so much for that info. I'm moving on also to look at cload.scm now, but confused about the s7 manual example compile lines which shows an "ex1.c". I wasn't clear about what is ex

[CM] make-pvocoder

2017-05-25 Thread James Hearon
Hi, I'm working thru snd make-pvocoder, clm make-phase-vocoder trying to find more info on the analyze, edit, and synthesize methods, such as the one below the manual which shows a lambda func for the synthesis or resynthesis method. Most of what I've been able to find is based on a gen from r

[CM] float-vectors

2017-06-15 Thread James Hearon
ith subject or body 'help' to cmdist-requ...@ccrma.stanford.edu You can reach the person managing the list at cmdist-ow...@ccrma.stanford.edu When replying, please edit your Subject line so it is more specific than "Re: Contents of Cmdist digest..." Today's Topics: 1. mak

[CM] sndplay, snd 17.6

2017-07-11 Thread James Hearon
Hi, I haven't been able to 'make' sndplay for a little while. Seems it's looking for sndlib or CLM headers. Wondering if it's something I'm doing different? Regards, Jim io.o: In function `mus_read_any_1': io.c:(.text+0xfde): undefined reference to `mus_copy_floats' io.c:(.text+0xffb): und

[CM] generators

2017-12-11 Thread James Hearon
Hi, I've been using the generators in generators.scm for a while, and enjoy making sound with them, but for the life of me I cannot seem to understand how they work. I'm confused about the lambda part and the use of fm. What is fm doing? I'd be grateful if someone could explain that. Such as

[CM] patterns snd-18

2018-01-17 Thread James Hearon
Hi, Congratulations on Snd vers. 18. I'm getting a load error on CM_patterns.scm, from emacs. (load "/opt/snd-18/CM_patterns.scm") >load: can't open "r7rs.scm" "/opt/snd-18/CM_patterns.scm"[11]: (require r7rs.scm) I've grepped around trying to see if I still have a snd-17 label stuck someplace

[CM] map-channel with dsp

2018-02-09 Thread James Hearon
Hi, I'm really stuck on trying to use map-channel to replace a newly created snd file with a dsp modified version of it. I've been looking at snd-test.scm for examples but still don't have it right yet and not sure how to craft the let/map-channel/lambda to make it work. All I get is a flat l

[CM] txt file I/O

2018-04-26 Thread James Hearon
Hi, I'm having trouble trying to figure out how to write samples as txt to a file. I have it working to the console, in emacs, but I can't seem to find the magic to save it to a file. Hoping I could get some help. Most of my efforts only result in saving .snd file to disk. I'm trying to ge

[CM] set! samples

2018-06-19 Thread James Hearon
Hi, I get a crash that I cannot seem to understand with the following code. In the do loop when I set the test to (= i 40400) I get a squarish-wave in the editor; but when I set it to 40500 or above I get an endless loop and a crash. I was trying to create a 2 sec. test.snd, then write the sam

[CM] set! samples

2018-06-20 Thread James Hearon
at cmdist-ow...@ccrma.stanford.edu When replying, please edit your Subject line so it is more specific than "Re: Contents of Cmdist digest..." Today's Topics: 1. set! samples (James Hearon) 2. Re: set! samples (b...@ccrma.stanford.edu)

[CM] env->channel, and float-vector->channel

2018-09-06 Thread James Hearon
Hi, I'm having some confusion about successive edits using env->channel vs. float-vector->channel. For example if I loop employing env-channel and a vector as an envelope, then I see the successive edits every 1k samples; but when I try to do that using float-vector->channel the spacing is squi

[CM] env->channel, and float-vector->channel

2018-09-07 Thread James Hearon
Contents of Cmdist digest..." Today's Topics: 1. env->channel, and float-vector->channel (James Hearon) 2. Re: env->channel, and float-vector->channel (b...@ccrma.stanford.edu) -- Message: 1 D

[CM] Snd Edit envelope

2018-12-27 Thread James Hearon
Hi, I haven't been able to view the waveform in Edit envelope for a while, and seems like I used to be able to see the waveform selection in the edit window. I can see the breakpoint handles, and those are applied to the sound okay, but I'm just guessing a bit as to where the breakpoints should

[CM] Snd Edit envelope

2018-12-28 Thread James Hearon
cmdist-requ...@ccrma.stanford.edu You can reach the person managing the list at cmdist-ow...@ccrma.stanford.edu When replying, please edit your Subject line so it is more specific than "Re: Contents of Cmdist digest..." Today's Topics: 1. Snd Edit envelope (James H

[CM] circular-scanned.ins

2019-06-07 Thread James Hearon
Hi, re: clm-5, emacs, slime, fedora 30 etc. For some reason I cannot get the circ scanned ins to compile using slime-compile-and-load-file command in emacs for clm-5. It's probably me, but I get an unmatched bracket error which I can't seem to debug. I tried adding this to my .emacs file to tr

Re: [CM] Cmdist Digest, Vol 133, Issue 2

2019-06-10 Thread James Hearon
x27;s Topics: 1. Re: circular-scanned.ins (b...@ccrma.stanford.edu) 2. Re: circular-scanned.ins (Juan I Reyes) -- Message: 1 Date: Fri, 07 Jun 2019 12:10:33 -0700 From: b...@ccrma.stanford.edu To: James Hearon Cc

[CM] snd 20.0

2020-01-08 Thread James Hearon
Hi, I'm getting a new error on CM_patterns.scm I haven't seen before. I upgraded to f31, snd20.0 recently. I could have missed something in all that and will double ck. >define-record-type: unbound variable "/opt/snd-20/CM_patterns.scm"[189]: (define-record-type) Regards,

Re: [CM] Cmdist Digest, Vol 140, Issue 4

2020-01-10 Thread James Hearon
dist-ow...@ccrma.stanford.edu When replying, please edit your Subject line so it is more specific than "Re: Contents of Cmdist digest..." Today's Topics: 1. snd 20.0 (James Hearon) 2. Re: snd 20.0 (b...@ccrma.stanford.edu) -

[CM] cm grace 3.10.3

2020-02-21 Thread James Hearon
Hi, I'm wondering about compiling cm, grace on fedora31. I'm having trouble getting thru the juce modules. make[1]: *** [Grace.make:209: obj/Grace/Debug/juce_audio_processors.o] Error 1 I've tried using 3.10.3 srcs for deprecated juce calls, but still not able to get thru the compile. Thank y

Re: [CM] Cmdist Digest, Vol 141, Issue 2

2020-02-23 Thread James Hearon
cmdist-requ...@ccrma.stanford.edu You can reach the person managing the list at cmdist-ow...@ccrma.stanford.edu When replying, please edit your Subject line so it is more specific than "Re: Contents of Cmdist digest..." Today's Topics: 1.

[CM] snd 20.4, f32 segfault

2020-06-10 Thread James Hearon
Hi, I'm having a strange problem after upgrading to f32 from f31. I needed to rebuild snd because of a libgsl issue. ./snd: error while loading shared libraries: libgsl.so.23: cannot open shared object file: No such file or directory Trying to rebuild with fresh srcs. ./configure --with-s7 --w

Re: [CM] Cmdist Digest, Vol 145, Issue 5

2020-06-11 Thread James Hearon
IGSEGV, si_code=SI_KERNEL, si_addr=NULL} --- +++ killed by SIGSEGV (core dumped) +++ Segmentation fault (core dumped) - snd_prefs_s7 ; Snd 17.0 (6-Dec-16) options saved Sat 17-Dec-2016 09:36 HST (set! (default-output-chans) 2) (set! (default-output-srate) 48000) (set!

[CM] unbound variable with CM_Patterns.scm

2020-06-19 Thread James Hearon
Hi, I'm still having trouble with f32, and snd 20.4, s7 9.1, sndlib 24.7 open snd $ ./snd choose Show Listener >(load "/opt/snd-20/CM_patterns.scm") ;unquote: no argument, 'unquote ; (list-values 'begin (list-values... >(define aaa (make-cycle (list 1 2 3))) ;unbound variable make-cycle ;

[CM] O.T. compositions

2020-08-31 Thread James Hearon
Hi, I'm wondering if there are any Schottstaedt compositions available someplace on the net for listening? Regards, Jim ___ Cmdist mailing list Cmdist@ccrma.stanford.edu https://cm-mail.stanford.edu/mailman/listinfo/cmdist

[CM] mix-home, etc.

2020-09-11 Thread James Hearon
Hi, I'm getting hung up in mixes. Trying something like the manual example, below, but getting back an error that the argument is a pair, not a mix (object). Wondering we're I might be going wrong? Thank you, Jim - mix-home mix mix-home returns a list containing the mix'

[CM] polyshape

2021-02-05 Thread James Hearon
Hi, I'm getting confused on make-polyshape and partials->polynomial. re: sndclm manual partials->polynomial takes a list or float-vector of partial numbers and amplitudes and returns the Chebyshev polynomial coefficients that produce that spectrum. These coefficients can be passed to po

[CM] make-polyshape

2021-02-06 Thread James Hearon
Hi, I think I figured that out by locating an ex. in test.scm. (partials->polynomial '(1 1 3 2 6 1)) ;(-1.0 -5.0 18.0 8.0 -48.0 0.0 32.0) instead of using the resulting eval of (partials->polynomial) as input to coeffs: (set! gen1 (make-polyshape 440.0 :coeffs '(-1.0 -5.0 18.0 8.0 -48.0 0.0 3

[CM] make-polyshape

2021-02-07 Thread James Hearon
Hi, re: make-polyshape Very cool. At least three ways to get the coeffs parameter working. I don't why I couldn't figure that out earlier. Thanks JIm (with-sound () (let ((gen (make-polyshape 400.0 :coeffs (float-vector -1.0 -5.0 18.0 8.0 -48.0 0.0 32.0)))) (do ((i 0 (+ i 1)))

[CM] dynamic variables

2021-03-02 Thread James Hearon
Hi, I have been bashing on a problem trying to figure out the best way to create and use dynamic variables in scheme, such as reg0, reg1, reg2, etc. and stumbling a bit. Wondering if there's a somewhat standard approach to doing that? For ex. if I create a variable, say inside a do-loop, and w

Re: [CM] Cmdist Digest, Vol 154, Issue 3

2021-03-05 Thread James Hearon
ntents of Cmdist digest..." Today's Topics: 1. Re: dynamic variables (b...@ccrma.stanford.edu) -- Message: 1 Date: Tue, 02 Mar 2021 12:10:45 -0800 From: b...@ccrma.stanford.edu To: James Hearon Cc: "cmdi

[CM] configure

2021-03-20 Thread James Hearon
Hi, Thanks for Snd21.2. For configure I've included: CFLAGS="-I/usr/include/linux/param.h" But I don't see param.h in configure or Readme.snd any longer. Is it still needed/useful? Just seems to define HZ based on system clock, I think. Regards, Jim __

[CM] repeating envs

2021-05-11 Thread James Hearon
Hi, The lambda function, from the manual, for repeating an env seems like a useful thing, but I cannot seem to find the magic to make it repeat. I'm wondering how you would use it for the polyshape gen fm parameter? Or is that not how it's supposed to work? Regards, Jim (define (strum e) (ma

Re: [CM] Cmdist Digest, Vol 156, Issue 4

2021-05-12 Thread James Hearon
ecific than "Re: Contents of Cmdist digest..." Today's Topics: 1. repeating envs (James Hearon) 2. Re: repeating envs (b...@ccrma.stanford.edu) -- Message: 1 Date: Tue, 11 May 2021 17:46:52 + F

[CM] snd21.4

2021-06-07 Thread James Hearon
Hi, I'm having trouble identifying which package is the notcurses-core for f34. Which one was that? I seem to only come up with the bigger one. Thank you, Jim Snd 21.4: nrepl: notcurses 2.1.6 or later is required now (notcurses got split into 2 libraries, notcurses-core and notcu

[CM] make-pulsed-env

2021-06-23 Thread James Hearon
Hi, I was trying to figure out how to use an env on the freq parameter of make-pulsed-env (make-pulsed-env envelope duration frequency) but it wants a real, not a pair. I thought I'd look-see the code for make-pulsed-env, but I can't seem to locate it. Wondering if there's a way to go about ac

Re: [CM] Cmdist Digest, Vol 157, Issue 4

2021-06-24 Thread James Hearon
cmdist-ow...@ccrma.stanford.edu When replying, please edit your Subject line so it is more specific than "Re: Contents of Cmdist digest..." Today's Topics: 1. make-pulsed-env (James Hearon) 2. Re: make-pulsed-env (b...@ccrma.stanford.edu) ---

[CM] loading libc_s7.so

2021-07-03 Thread James Hearon
Hi, I've been having a problem for a few builds with a non-gui build failing to load libc_s7.so. When I run ./snd it writes libc_s7.so, but sticks on loading libc_s7.so. Seems to work okay for gui build, --with-s7, --with-motif. I don't do any make install. Just make, then ./snd. >ls -ld lib

[CM] loading libc_s7.so

2021-07-04 Thread James Hearon
Hi, I don't receive an error message. I just run > ./snd then the cursor just hangs on loading libc_s7.so and doesn't progress to <1> I tried different configurations for building: These work okay and load libc_s7.so: $ ./configure --with-s7 --without-audio --without-gui $ ./configure --with-s7 -

[CM] loading libc_s7.c

2021-07-07 Thread James Hearon
Hi, Thank you for the information. The ./snd -noinit option seems to work best, so far for command-line approach. My normal approach is to use snd thru emacs and I've not had the libc_s7 loading problem there. So no worries, I can be patient until this gets sorted out. Regards, Jim [jhearon

[CM] OT a few pieces

2021-09-08 Thread James Hearon
Hi, I have so enjoyed working with Snd to create instruments, and sounds. I've found it very flexible and useful. Also have enjoyed utilizing R. Taube's patterns too. Posting a link to some older pieces I did using snd as an ex. of creative work using Snd. I believe these were from 2019. ht

[CM] polyoid-partial-amps-and-phases gen

2021-10-01 Thread James Hearon
Hi, I was looking at "other generators" in generators.scm, and became confused a bit by the example: (with-sound (:clipped #f :channels 2) (let* ((samps 44100) (n 10) (gen (make-noid 1.0 n 'min-peak)) (gen2 (make-oscil n ((polyoid-partial-amps-and-phases gen) (- (length (polyoid-partial-amps-a

Re: [CM] Cmdist Digest, Vol 161, Issue 2

2021-10-03 Thread James Hearon
(b...@ccrma.stanford.edu) -- Message: 1 Date: Fri, 01 Oct 2021 13:01:13 -0700 From: b...@ccrma.stanford.edu To: James Hearon Cc: "cmdist@ccrma.Stanford.EDU" Subject: Re: [CM] polyoid-partial-amps-and-phases gen Message-ID: Content-Type: text/plain; charset=US-ASCII; forma

[CM] poly questions

2021-10-26 Thread James Hearon
Hi, Trying to get an understanding of all the interesting aspects of polywave in snd, and chebyshev polynomials, coefficients etc. I was trying to get a squarish wave from the coefficients but failing. Also tried partials->polynomial, and normalize-partials with same result. Wondering what I'm

[CM] poly questions

2021-10-27 Thread James Hearon
more specific than "Re: Contents of Cmdist digest..." Today's Topics: 1. poly questions (James Hearon) -- Message: 1 Date: Tue, 26 Oct 2021 17:40:43 + From: James Hearon To: "cmdist@ccrma.Stanford

[CM] poly questions

2021-10-28 Thread James Hearon
Hi, I think I'm understanding better now. In order to generate and utilize the correct Chebyshev coefficients with make-polyshape, one needs to specify the kind or type using partials->polynomial to first generate the coefficients. (partials->polynomial (float-vector 1 1 3 1/3 5 1/5 7 1/7 9 1/9

[CM] mus-chebyshev-u-sum

2021-11-05 Thread James Hearon
Hi, I'm trying and failing to get my head around mus-chebyshev sums. For predictability I was trying to achieve the square wave output but getting hung up. The manual says mus-chebyshev-tu-sum and friends perform the same function as partials->polynomial, but it takes a coeffs vector too, so

[CM] mus-chebyshev-u-sum

2021-11-18 Thread James Hearon
re: mus-chebyshev-u-sum takes a list of partial (harmonic) amplitudes: (with-sound (:srate 48000 :channels 1 :play #t) (let* ((dur 1.0) (samps (seconds->samples dur)) (coeffs (float-vector 0 1 0 1/3 0 1/5 0 1/7 0 1/9)) (incr (hz->radians 200.0))) (do ((i 0 (+ i 1

[CM] portamento

2022-04-19 Thread James Hearon
Hi, I'm trying to come up with an approach to portamento note phrasing. Best I've been able to do is work with gliss. I'm wondering if this is on the right track for how this is usually handled? Regards, Jim (definstrument (myport start-time duration frequency start-freq end-freq (amp-env '

Re: [CM] Cmdist Digest, Vol 167, Issue 4

2022-04-20 Thread James Hearon
han "Re: Contents of Cmdist digest..." Today's Topics: 1. portamento (James Hearon) 2. Re: portamento (b...@ccrma.stanford.edu) -- Message: 1 Date: Tue, 19 Apr 2022 18:02:57 + From: James Hearon To: &

[CM] portamento

2022-05-11 Thread James Hearon
Hi, I'm still pondering how best to accomplish this. I tried a couple of exs below, one adding filters. I thought bandpass was best to try but couldn't get good high cutoff results with just one filter so I went to two overlapping bandpass filters. But I've buggered the freqs by an octave som

[CM] out

2022-06-16 Thread James Hearon
Hi, I think I've had a basic misunderstanding re: re stereo and using out such as outa, outb, outc, outd. It seems to sum rather than provide discrete outs? I'm just checking I'm not going bonkers looking at the fft of the output signal. I know locsig works differently ex.1 results in 880 hz

[CM] make-bandpass xcoeffs

2022-06-29 Thread James Hearon
Hi, It seems make-bandpass doesn't have the mus-xcoeffs feature as general make-filter does, but I was trying to get the numbers to do some comparisons all in one definstrument, define, or let. It seems calling the make-bandpass function as a generator and trying to place the output into a vect

[CM] make-bandpass

2022-07-01 Thread James Hearon
x27;s Topics: 1. Re: make-bandpass xcoeffs (b...@ccrma.stanford.edu) -- Message: 1 Date: Wed, 29 Jun 2022 12:04:42 -0700 From: b...@ccrma.stanford.edu To: James Hearon Cc: "cmdist@ccrma.Stanford.EDU" Subject: Re: [CM] make-bandpass xcoeffs Message-ID: <4bc1a174e5c

[CM] snd command line

2022-09-01 Thread James Hearon
Hi, I've upgraded to f36, snd 22.6 and tried configuring and running Snd with no gui. It writes libc_s7.c, and lib_s7.so, but doesn't load lib_s7.so. I recall some pipewire weirdness previously. I'm wondering what the status or workaround might be, if any at all? No harm. Still enjoying usi

Re: [CM] Snd command line

2022-09-01 Thread James Hearon
Yay. (define stderr-buffered #t) at top of repl.com helps load the lib_s7.so. Thank you. It's been a while since I used Snd with no gui. Regards, Jim ___ Cmdist mailing list Cmdist@ccrma.stanford.edu https://cm-mail.stanford.edu/mailman/listinfo/cmdis

[CM] loading libc_s7.so

2023-01-10 Thread James Hearon
Hi, I upgraded to f37, Snd23 but I've lost track of what I am supposed to do for the hung loading libc_s7.so problem. > ./snd loading libc_s7.so ... Could someone kindly remind me what makes this load again? Thank you, Jim ___ Cmdist mailing list Cmdi

[CM] loading libc_s7.so

2023-01-11 Thread James Hearon
Ah yes. Adding (define stderr-buffered #t) in repl.scm, was what I was missing. I'll make a note this time so's not to forget. My searches couldn't seem to come up with that important bit of info for upgrades. Regards, Jim ___ Cmdist mailing list Cmdi

[CM] OT music

2023-06-20 Thread James Hearon
Hi, I'm enjoying working with the instruments, synthesis gens, and making some of my own insts in Snd. I've posted a few pieces from the last couple of years made with Snd. Regards, Jim ___ Cmdist mailing list Cmdist@ccrma.stanford.edu https://cm-mail

[CM] OT music

2023-06-20 Thread James Hearon
https://www.ed6673.com/music/ Regards, Jim ___ Cmdist mailing list Cmdist@ccrma.stanford.edu https://cm-mail.stanford.edu/mailman/listinfo/cmdist

[CM] OT music

2023-06-26 Thread James Hearon
Hi Michael, re: code ex. There was no overarching algorithm or AI. (I wish there were...things could be easier). Just using Bill's great variety of insts and gens to create sounds derived from the manual, and then mixing them. Also using Michael Scholz's inf-snd.el and emacs as editor. Here'

[CM] cons value for float vector

2023-09-07 Thread James Hearon
Hi, I'm having a difficult time trying to create two columns of data (or three or four etc.) in a float vector. A list works fine, but the vector gives an error that the data is a pair but should be a real. I could use make-env for this probably, but seems like I should be able to get the vecto

[CM] cons value for float vector

2023-09-08 Thread James Hearon
; Today's Topics: 1. cons value for float vector (James Hearon) -- Message: 1 Date: Thu, 7 Sep 2023 17:47:11 + From: James Hearon To: "cmdist@ccrma.Stanford.EDU" Subject: [CM] cons value for float vector M

[CM] make-sampler vs. open

2023-12-07 Thread James Hearon
Hi, I was trying to use make-sampler, but having a problem opening (read-sample) a non-bandlimited square wav effectively. Snd's Open menu function works fine, but the make-sampler approach gives a max'd out flat line which seems like it might be an aliasing problem? I tried low-pass filtering

[CM] make-sampler vs. open

2023-12-08 Thread James Hearon
o it is more specific than "Re: Contents of Cmdist digest..." Today's Topics: 1. make-sampler vs. open (James Hearon) -- Message: 1 Date: Thu, 7 Dec 2023 18:12:56 + From: James Hearon To: "cmdist@ccrma.

[CM] edit selection color

2023-12-29 Thread James Hearon
Hi, This is a bit odd, but I'm posting in case someone might have a suggestion. I'm on fc39, Snd 23.9, using motif, no gl. I've recompiled Snd a few times recently trying to solve a wacked color problem with the edit selection color. When I select an area to edit, the color is yellow with a red

[CM] select color

2024-01-11 Thread James Hearon
Hi, I'm still trying to trouble shoot the buggered select color in Snd. Not having much luck. I reinstalled all dep libraries, went thru prefs, and snd prefs file, downloaded and reconfigured Snd several times. I also installed another motif app, Grace (not R. Taube's Grace) and the motif colo

[CM] select color

2024-01-12 Thread James Hearon
cmdist-ow...@ccrma.stanford.edu When replying, please edit your Subject line so it is more specific than "Re: Contents of Cmdist digest..." Today's Topics: 1. select color (James Hearon) 2. Re: select color (b...@ccrma.stanford.edu) -

[CM] ring-modulate

2024-06-04 Thread James Hearon
Hi, I'm getting confused over ring-modulate ex. in manual vs. ring-modulate code in new-effects.scm. Manual: ring-modulate in1 in2; returns (* in1 in2) And new-effects.scm seems to show map-channel using frequency and radians: (rm-effect rm-frequency #f)) ;(list 0 0 1 (hz->radians rm-radians

[CM] stuck on cm in emacs, w/ xp

2006-09-20 Thread James Hearon
Hi, Newbie trying to start cm in emacs under xp. Unsure about .el or .emacs file, and where it belongs. I'm using: Win XP, w/command-prompt lisp is clisp in lispbox-0.7 which includes emacs-21.3 slime-2005-12-27 Clisp-2.37 Have CM 2.9.1 and working cm.bat in CM run Lispbox.bat in command-pr

[CM] snd

2013-03-15 Thread James Hearon
Hi,I'm new to this...or rather returning after a long hiatus and trying it out again. I have clm-4, snd-13.4, sndlib, and s7 on fedora18. When I type snd my.wav all I get is snd> I must need something else to see those lovely graphics shown in the manual? Regards,Jim

[CM] Grace, cs:event

2013-03-30 Thread James Hearon
cs:event (list) → void Sends an event list to Csound. The first element in the list must be the event's type, either i or f. Similar to "cs:i" and "cs:f" in all other respects. Hi,I hope I'm on the right list for this query. I have below using scheme, and so far so good... (c

[CM] Grace,s7, system

2013-04-05 Thread James Hearon
Hi, I'm wondering what "65280" means. I'm trying to use the s7 "system" call from Grace, ex. (system "/home/Grace/test.sh") It works fine on some things, such as if .sh contains: #! /bin/sh cd /opt/snd-13.5 ./snd 808loop.wav and returns 0, but on other items I just get "65280" returned in Grac

[CM] scheme, s7

2013-04-25 Thread James Hearon
Hi, Having a devil of a time trying to figure out how to assign a variable and increment a counter in a loop or process. Easy enough in c, but really struggling to do this in scheme. (define counter 0) (define (bump-counter) (process repeat 5 do(set! counter (+ counter 1 (bump-counter) So

[CM] s7, simple listener

2013-05-15 Thread James Hearon
Hi, Trying to run the simple listener example from s7 manual under FFI. $ gcc -c s7.c -I. ok. $ gcc -o doc7 doc7.c s7.o -lm -I. s7.o: In function `g_load': s7.c:(.text+0x4a177): undefined reference to `dlopen' s7.c:(.text+0x4a192): undefined reference to `dlsym' s7.c:(.text+0x4a1b6): undefined

[CM] build clm-4

2013-05-21 Thread James Hearon
Hi, I'm trying to build clm-4 for lisp on fedora18, and not sure everything compiled. After compilation I tried: (compile-file "v.ins") (load "v") (with-sound () (fm-violin 0 1 440 .1)) But get: The function COMMON-LISP-USER::FM-VIOLIN is undefined. I'm wondering if I have it right and everyth

[CM] build clm-4

2013-05-23 Thread James Hearon
The compilation looks ok. Id check if things happen in the right packages. Try evaluating: (package-name (symbol-package 'fm-violin)) and see if its the same as the package youre working in: (package-name *package*) -anders ---Hi, I getCOMMON-LISP-USER by evaluating the above expressio

[CM] clm, slime

2013-06-24 Thread James Hearon
Hi, Getting myself confused trying to interact with clm (clm-4) using emacs and slime. I have f18, sbcl, clm-4 and was doing fine from command line with: (load "all.lisp") (compile-file "v.ins") (load "v") (with-sound () (fm-violin 0 1 440 .1)) But found I needed more REPL to feel comfortable w

Re: [CM] Cmdist Digest, Vol 62, Issue 3

2013-06-25 Thread James Hearon
t; or, via email, send a message with subject or body 'help' to > cmdist-requ...@ccrma.stanford.edu > > You can reach the person managing the list at > cmdist-ow...@ccrma.stanford.edu > > When replying, please edit your Subject line so it is more

[CM] emacs, slime, clm

2013-07-01 Thread James Hearon
Cmdist Digest, Vol 62, Issue 3 > To: cmdist@ccrma.Stanford.EDU > Message-ID: <871u7lglbj@notam02.no> > Content-Type: text/plain > > >>>>> "J" == James Hearon writes: > > J> (compile-file "v.ins") works in slime-repl sbcl

[CM] f19, slime

2013-07-10 Thread James Hearon
Hi,I'm trying a new install of f19, with Xcfe. Not having any luck getting emacs to compile slime. Wondering if anyone else is having a similar problem, and if you've found the solution? M - x slime [no match] in .emacs, I have: ;;slime(setq inferior-lisp-program "/usr/bin/sbcl")(add-to-list 'l

[CM] f19, slime

2013-07-10 Thread James Hearon
Hi, re: slime not compiling in f19, XFce I found a post about Ubuntu, not f19 but something about ...SLIME is using the name “lisp” to invoke Lisp, when it should be using “sbcl”. Not sure why then .emacs is not doing the job ;;slime

Re: [CM] Cmdist Digest, Vol 63, Issue 6

2013-07-11 Thread James Hearon
st digest..." > > > Today's Topics: > >1. Re: f19, slime (Ralf Mattes) >2. Re: f19, slime (Fernando Lopez-Lezcano) >3. f19, slime (James Hearon) > > > -- > > Message: 1 &

  1   2   >