[Csnd] some Csound pieces (This is where we live and I am standing on the porch )
Date | 2022-03-08 07:35 |
From | Matthew Conroy |
Subject | [Csnd] some Csound pieces (This is where we live and I am standing on the porch ) |
Dear Csound folks, I've been a happy user of Csound for over twenty years (and lurking on this mailing list for quite a while) and I wanted to say hello by sharing a set of pieces I've made recently. I made them in February for the RPM Challenge ( https://www.rpmchallenge.com/ ) which I've participated in for many years (I highly recommend it!). The tracks were all made with Csound using various samples I've recorded. The basic idea was layering and filtering, with some ring modulation on one track (which I hope isn't too obvious). I wanted to keep things simple, opcode-wise, and instead use many, many layers, and see what I could come up with that way. The tracks are on Soundcloud and Bandcamp (at the latter, it may be easier to download them en mass if you want to do that). https://soundcloud.com/matthew-m-conroy/sets/rpm2022 https://matthewmconroy.bandcamp.com/album/this-is-where-we-live-and-i-am-standing-on-the-porch Comments would be welcome! cheers, Matt --------------------------------------- Matthew M. Conroy Seattle, Washington, U.S. --------------------------------------- Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here |
Date | 2022-03-08 11:59 |
From | Pablo Frank |
Subject | Re: [Csnd] some Csound pieces (This is where we live and I am standing on the porch ) |
.csd files ?
From: A discussion list for users of Csound <CSOUND@LISTSERV.HEANET.IE> on behalf of Matthew Conroy <list2@MADANDMOONLY.COM>
Sent: Tuesday, March 8, 2022 7:35 AM To: CSOUND@LISTSERV.HEANET.IE <CSOUND@LISTSERV.HEANET.IE> Subject: [Csnd] some Csound pieces (This is where we live and I am standing on the porch ) Dear Csound folks,
I've been a happy user of Csound for over twenty years (and lurking on this mailing list for quite a while) and I wanted to say hello by sharing a set of pieces I've made recently. I made them in February for the RPM Challenge ( https://www.rpmchallenge.com/ ) which I've participated in for many years (I highly recommend it!). The tracks were all made with Csound using various samples I've recorded. The basic idea was layering and filtering, with some ring modulation on one track (which I hope isn't too obvious). I wanted to keep things simple, opcode-wise, and instead use many, many layers, and see what I could come up with that way. The tracks are on Soundcloud and Bandcamp (at the latter, it may be easier to download them en mass if you want to do that). https://soundcloud.com/matthew-m-conroy/sets/rpm2022 https://matthewmconroy.bandcamp.com/album/this-is-where-we-live-and-i-am-standing-on-the-porch Comments would be welcome! cheers, Matt --------------------------------------- Matthew M. Conroy Seattle, Washington, U.S. --------------------------------------- Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here |
Date | 2022-03-14 02:13 |
From | Matthew Conroy |
Subject | Re: [Csnd] some Csound pieces (This is where we live and I am standing on the porch ) |
Hi Pablo, I used an .orc file and a .sco file for each track. Here is one .orc file. It is quite simple, with just one simple instrument. This is the one for the final track, Float Across the Smooth Portion. ------------------------------------------------------------------------ sr = 44100 ksmps = 1 nchnls = 2 0dbfs = 1 instr 1 ;p2 is time ;p3 is duration ;p4 is sample number ;p5 is stereo ;p6 is lowpass filter freq ;p7 is amplitude ;p8 is ring freq ;p9 is ring mix ;p10 is pitch adjustment ;p11 is fade in (in seconds) ktrap linen 1, p11,p3,0.02*p3 aring poscil3 1,p8 a1 loscil 1,1,p4,p10 aring2 = a1*aring a1 = a1*(1-p9)+aring2*p9 a2b lowpass2 a1,p6,1.5 a2a lowpass2 a2b, p6, 1.5 a2 balance a2a,a1 outs a2*(1-p5)*p7*ktrap*ktrap,a2*p5*p7*ktrap*ktrap endin ------------------------------------------------------------------------ I wrote a program (in python) to generate the score. There are 2000 sound events for this piece. The score looks like this: f 1 0 0 1 "dry/dry01.wav" 0 0 0 f 2 0 0 1 "dry/dry02.wav" 0 0 0 f 3 0 0 1 "dry/dry03.wav" 0 0 0 i1 0.0 41.6414 1 0.2289 100.0 0.1 1500.0 0 1 0 i1 0.05 41.6414 1 0.4758 100.0 0.1 1500.0 0 1 0 i1 0.1004 41.6414 1 0.0993 100.0 0.1 1500.0 0 1 0 i1 0.1514 41.6414 1 0.9976 100.0 0.1 1500.0 0 1 0 i1 0.2029 41.6414 1 0.1102 100.0 0.1 1500.0 0 1 0 i1 0.2549 41.6414 1 0.5881 100.0 0.1 1500.0 0 1 0 i1 0.3074 41.6414 1 0.8163 100.0 0.1 1500.0 0 1 0 . . . i1 102.0911 62.5247 2 0.9647 579.9999 0.1 2791.7258 0 1 0 i1 102.1845 41.6414 1 0.3868 769.9999 0.1 2652.1955 0 1 0 i1 102.2782 62.5247 2 0.3939 959.9999 0.1 2791.7258 0 1 0 i1 102.3712 62.5247 2 0.6112 1150.0 0.1 2791.7258 0 1 0 i1 102.4639 62.5247 2 0.1649 1339.9999 0.1 2791.7258 0 1 0 i1 102.5563 62.5247 2 0.8084 1529.9999 0.1 2791.7258 0 1 0 i1 102.6485 41.6414 1 0.7006 1719.9999 0.1 2652.1955 0 1 0 i1 102.7433 41.6414 1 0.9227 1909.9999 0.1 2652.1955 0 1 0 e -------------------------------------------------------------- For this piece, the three samples used were recordings I made of dry ice sublimating under water. cheers, Matt On Tue, 2022-03-08 at 11:59 +0000, Pablo Frank wrote: > .csd files ? > ________________________________ > From: A discussion list for users of Csound |