Csound Csound-dev Csound-tekno Search About

[Csnd] New piece: A Door Into Spring

Date2009-04-26 13:17
FromDave Seidel
Subject[Csnd] New piece: A Door Into Spring
Hello,

A rhapsody in distressed metal; a seven-second sample time-stretched, 
pitch-shifted and layered into an ambient canon.  Hope you enjoy it. As 
always, comments are welcome.

http://mysterybear.net/article/35/a-door-into-spring

- Dave

-- 
~DaveSeidel = [
   http://mysterybear.net ,
   http://daveseidel.tumblr.com ,
   http://twitter.com/DaveSeidel
];


Date2009-04-26 14:07
FromDave Phillips
Subject[Csnd] Re: New piece: A Door Into Spring
Dave Seidel wrote:
>
> A rhapsody in distressed metal; a seven-second sample time-stretched, 
> pitch-shifted and layered into an ambient canon.  Hope you enjoy it. 
> As always, comments are welcome. 


In true Christian Wolff style I'm listening to your piece as an ambient 
obbligato while my neighborhood awakes to the tunes of lawn mowers, 
convenience store compressor fans, and motorcycles. All blending 
together nicely. :)

Thanks !

Best,

dp


Date2009-04-26 14:33
FromDave Seidel
Subject[Csnd] Re: Re: New piece: A Door Into Spring
Excellent!  (And thanks.)

- Dave

Dave Phillips wrote:
> Dave Seidel wrote:
>>
>> A rhapsody in distressed metal; a seven-second sample time-stretched, 
>> pitch-shifted and layered into an ambient canon.  Hope you enjoy it. 
>> As always, comments are welcome. 
> 
> 
> In true Christian Wolff style I'm listening to your piece as an ambient 
> obbligato while my neighborhood awakes to the tunes of lawn mowers, 
> convenience store compressor fans, and motorcycles. All blending 
> together nicely. :)
> 
> Thanks !
> 
> Best,
> 
> dp



Date2009-04-26 15:01
FromRory Walsh
Subject[Csnd] Re: Re: Re: New piece: A Door Into Spring
I really enjoyed listening to this. Thanks for sharing.

Rory.


2009/4/26 Dave Seidel :
> Excellent!  (And thanks.)
>
> - Dave
>


Date2009-04-26 15:12
FromDave Seidel
Subject[Csnd] Re: Re: Re: Re: New piece: A Door Into Spring
Thanks, Rory.

- Dave

Rory Walsh wrote:
> I really enjoyed listening to this. Thanks for sharing.
> 
> Rory.



Date2009-04-26 17:34
FromSteven Yi
Subject[Csnd] Re: New piece: A Door Into Spring
HI Dave,

I'll join the chorus of saying thanks for sharing!  Enjoying this very much!

steven

On Sun, Apr 26, 2009 at 7:17 AM, Dave Seidel  wrote:
> Hello,
>
> A rhapsody in distressed metal; a seven-second sample time-stretched,
> pitch-shifted and layered into an ambient canon.  Hope you enjoy it. As
> always, comments are welcome.
>
> http://mysterybear.net/article/35/a-door-into-spring
>
> - Dave
>
> --
> ~DaveSeidel = [
>  http://mysterybear.net ,
>  http://daveseidel.tumblr.com ,
>  http://twitter.com/DaveSeidel
> ];
>
>
>
> Send bugs reports to this list.
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
> csound"
>


Date2009-04-26 17:59
FromDave Seidel
Subject[Csnd] Re: Re: New piece: A Door Into Spring
Thanks, Steven.  There's actually a little of your code in the CSD, an 
equal-power panning UDO I adapted from one of your pieces -- credited to 
you, of course.  :-)

- Dave

Steven Yi wrote:
> HI Dave,
> 
> I'll join the chorus of saying thanks for sharing!  Enjoying this very much!
> 
> steven



Date2009-04-26 18:34
FromSteven Yi
Subject[Csnd] Re: Re: Re: New piece: A Door Into Spring
Oh, I think that's probably not my work originally!  The only pan I've
ever coded myself was just an implementation of General MIDI 2's
recommended formula for panning.  (This is my preferred panning for
stereo panning these days.)  I'm not sure if this is what you used or
not. Regardless, I think it's great that we can consult each other's
work and build off of it.  I'll likely start looking at incororating
dam and dcblock2 after looking at the CSD for this piece. =)

Thanks!
steven

On Sun, Apr 26, 2009 at 11:59 AM, Dave Seidel  wrote:
> Thanks, Steven.  There's actually a little of your code in the CSD, an
> equal-power panning UDO I adapted from one of your pieces -- credited to
> you, of course.  :-)
>
> - Dave
>
> Steven Yi wrote:
>>
>> HI Dave,
>>
>> I'll join the chorus of saying thanks for sharing!  Enjoying this very
>> much!
>>
>> steven
>
>
>
>
> Send bugs reports to this list.
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
> csound"
>


Date2009-04-26 19:11
FromDave Seidel
Subject[Csnd] Re: Re: Re: Re: New piece: A Door Into Spring
This is the one I mean.  I changed it a bit by using some of the new 
math constants and adding the icos and isin variables to avoid 
evaluating certain expression more than once:

	opcode	yipan,aa,ia

iSpace,aout	xin

iSpace	=	iSpace * $M_PI * .5
icos	=	cos(iSpace)
isin	=	sin(iSpace)
krtl	= 	$M_SQRT2 / 2 * (icos + isin)
krtr	= 	$M_SQRT2 / 2 * (icos - isin)
aLeft	=	aout * krtl
aRight	=	aout * krtr

		xout	aLeft, aRight

	endop


Steven Yi wrote:
> Oh, I think that's probably not my work originally!  The only pan I've
> ever coded myself was just an implementation of General MIDI 2's
> recommended formula for panning.  (This is my preferred panning for
> stereo panning these days.)  I'm not sure if this is what you used or
> not. Regardless, I think it's great that we can consult each other's
> work and build off of it.  I'll likely start looking at incororating
> dam and dcblock2 after looking at the CSD for this piece. =)
> 
> Thanks!
> steven
> 
> On Sun, Apr 26, 2009 at 11:59 AM, Dave Seidel  wrote:
>> Thanks, Steven.  There's actually a little of your code in the CSD, an
>> equal-power panning UDO I adapted from one of your pieces -- credited to
>> you, of course.  :-)
>>
>> - Dave
>>
>> Steven Yi wrote:
>>> HI Dave,
>>>
>>> I'll join the chorus of saying thanks for sharing!  Enjoying this very
>>> much!
>>>
>>> steven



Date2009-04-27 00:20
FromJoe O'Farrell
Subject[Csnd] Re: New piece: A Door Into Spring
Must add my voice to the acclamation! Love the spectral aspect.

A great example what can be achieved in Csound using relatively  
simple resources (and a lot of talent and imagination!).

Joe


On 26 Apr 2009, at 13:17, Dave Seidel wrote:

> Hello,
>
> A rhapsody in distressed metal; a seven-second sample time- 
> stretched, pitch-shifted and layered into an ambient canon.  Hope  
> you enjoy it. As always, comments are welcome.
>
> http://mysterybear.net/article/35/a-door-into-spring
>
> - Dave
>
> -- 
> ~DaveSeidel = [
>   http://mysterybear.net ,
>   http://daveseidel.tumblr.com ,
>   http://twitter.com/DaveSeidel
> ];
>
>
>
> Send bugs reports to this list.
> To unsubscribe, send email sympa@lists.bath.ac.uk with body  
> "unsubscribe csound"
>


Date2009-04-27 00:50
FromDave Seidel
Subject[Csnd] Re: Re: New piece: A Door Into Spring
Thanks, Joe.  Yeah, it's true that you don't always need a complex 
instrument -- in this case, it's really just a simple processing chain.

- Dave

Joe O'Farrell wrote:
> Must add my voice to the acclamation! Love the spectral aspect.
> 
> A great example what can be achieved in Csound using relatively simple 
> resources (and a lot of talent and imagination!).
> 
> Joe
> 
> 
> On 26 Apr 2009, at 13:17, Dave Seidel wrote:
> 
>> Hello,
>>
>> A rhapsody in distressed metal; a seven-second sample time-stretched, 
>> pitch-shifted and layered into an ambient canon.  Hope you enjoy it. 
>> As always, comments are welcome.
>>
>> http://mysterybear.net/article/35/a-door-into-spring
>>
>> - Dave



Date2009-04-28 01:24
FromSteven Yi
Subject[Csnd] Re: Re: Re: Re: Re: New piece: A Door Into Spring
Hi Dave,

I think this code I used that I got originally from one of Michael
Gogins' project, and that in itself came from a Curtis Roads text.
The latest version of this code is one Istvan posted a while back that
optimized things for speed.  The whole of the latest code is here:

http://www.csounds.com/udo/displayOpcode.php?opcode_id=4

and the entire history should be there, including an article in the
Csound Magazine by Hans Mikelson with panning methods.

So, credit definitely goes to all of the above!

steven

On Sun, Apr 26, 2009 at 11:11 AM, Dave Seidel  wrote:
> This is the one I mean.  I changed it a bit by using some of the new math
> constants and adding the icos and isin variables to avoid evaluating certain
> expression more than once:
>
>        opcode  yipan,aa,ia
>
> iSpace,aout     xin
>
> iSpace  =       iSpace * $M_PI * .5
> icos    =       cos(iSpace)
> isin    =       sin(iSpace)
> krtl    =       $M_SQRT2 / 2 * (icos + isin)
> krtr    =       $M_SQRT2 / 2 * (icos - isin)
> aLeft   =       aout * krtl
> aRight  =       aout * krtr
>
>                xout    aLeft, aRight
>
>        endop
>
>
> Steven Yi wrote:
>>
>> Oh, I think that's probably not my work originally!  The only pan I've
>> ever coded myself was just an implementation of General MIDI 2's
>> recommended formula for panning.  (This is my preferred panning for
>> stereo panning these days.)  I'm not sure if this is what you used or
>> not. Regardless, I think it's great that we can consult each other's
>> work and build off of it.  I'll likely start looking at incororating
>> dam and dcblock2 after looking at the CSD for this piece. =)
>>
>> Thanks!
>> steven
>>
>> On Sun, Apr 26, 2009 at 11:59 AM, Dave Seidel 
>> wrote:
>>>
>>> Thanks, Steven.  There's actually a little of your code in the CSD, an
>>> equal-power panning UDO I adapted from one of your pieces -- credited to
>>> you, of course.  :-)
>>>
>>> - Dave
>>>
>>> Steven Yi wrote:
>>>>
>>>> HI Dave,
>>>>
>>>> I'll join the chorus of saying thanks for sharing!  Enjoying this very
>>>> much!
>>>>
>>>> steven
>
>
>
>
> Send bugs reports to this list.
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
> csound"
>


Date2009-04-28 01:44
FromDave Seidel
Subject[Csnd] Re: Re: Re: Re: Re: Re: New piece: A Door Into Spring
Aha, thanks for the information!  I will catch up with the latest version.

- Dave

Steven Yi wrote:
> Hi Dave,
> 
> I think this code I used that I got originally from one of Michael
> Gogins' project, and that in itself came from a Curtis Roads text.
> The latest version of this code is one Istvan posted a while back that
> optimized things for speed.  The whole of the latest code is here:
> 
> http://www.csounds.com/udo/displayOpcode.php?opcode_id=4
> 
> and the entire history should be there, including an article in the
> Csound Magazine by Hans Mikelson with panning methods.
> 
> So, credit definitely goes to all of the above!
> 
> steven
> 
> On Sun, Apr 26, 2009 at 11:11 AM, Dave Seidel  wrote:
>> This is the one I mean.  I changed it a bit by using some of the new math
>> constants and adding the icos and isin variables to avoid evaluating certain
>> expression more than once:
>>
>>        opcode  yipan,aa,ia
>>
>> iSpace,aout     xin
>>
>> iSpace  =       iSpace * $M_PI * .5
>> icos    =       cos(iSpace)
>> isin    =       sin(iSpace)
>> krtl    =       $M_SQRT2 / 2 * (icos + isin)
>> krtr    =       $M_SQRT2 / 2 * (icos - isin)
>> aLeft   =       aout * krtl
>> aRight  =       aout * krtr
>>
>>                xout    aLeft, aRight
>>
>>        endop
>>
>>
>> Steven Yi wrote:
>>> Oh, I think that's probably not my work originally!  The only pan I've
>>> ever coded myself was just an implementation of General MIDI 2's
>>> recommended formula for panning.  (This is my preferred panning for
>>> stereo panning these days.)  I'm not sure if this is what you used or
>>> not. Regardless, I think it's great that we can consult each other's
>>> work and build off of it.  I'll likely start looking at incororating
>>> dam and dcblock2 after looking at the CSD for this piece. =)
>>>
>>> Thanks!
>>> steven
>>>
>>> On Sun, Apr 26, 2009 at 11:59 AM, Dave Seidel 
>>> wrote:
>>>> Thanks, Steven.  There's actually a little of your code in the CSD, an
>>>> equal-power panning UDO I adapted from one of your pieces -- credited to
>>>> you, of course.  :-)
>>>>
>>>> - Dave
>>>>
>>>> Steven Yi wrote:
>>>>> HI Dave,
>>>>>
>>>>> I'll join the chorus of saying thanks for sharing!  Enjoying this very
>>>>> much!
>>>>>
>>>>> steven


Date2009-05-01 15:21
FromPrent Rodgers
Subject[Csnd] Re: New piece: A Door Into Spring
Dave,
Wonderful work. Elegant and lovely.

Prent Rodgers


Dave Seidel wrote:
> 
> Hello,
> 
> A rhapsody in distressed metal; a seven-second sample time-stretched, 
> pitch-shifted and layered into an ambient canon.  Hope you enjoy it. As 
> always, comments are welcome.
> 
> http://mysterybear.net/article/35/a-door-into-spring
> 
> - Dave
> 
> -- 
> ~DaveSeidel = [
>    http://mysterybear.net ,
>    http://daveseidel.tumblr.com ,
>    http://twitter.com/DaveSeidel
> ];
> 

-- 
View this message in context: http://www.nabble.com/New-piece%3A-A-Door-Into-Spring-tp23241682p23333892.html
Sent from the Csound - General mailing list archive at Nabble.com.


Date2009-05-01 17:18
FromDave Seidel
Subject[Csnd] Re: Re: New piece: A Door Into Spring
Thanks, Prent!

- Dave

Prent Rodgers wrote:
> Dave,
> Wonderful work. Elegant and lovely.
> 
> Prent Rodgers
> 
> 
> Dave Seidel wrote:
>> Hello,
>>
>> A rhapsody in distressed metal; a seven-second sample time-stretched, 
>> pitch-shifted and layered into an ambient canon.  Hope you enjoy it. As 
>> always, comments are welcome.
>>
>> http://mysterybear.net/article/35/a-door-into-spring
>>
>> - Dave

-- 
~DaveSeidel = [
   http://mysterybear.net,
   http://daveseidel.tumblr.com,
   http://twitter.com/DaveSeidel
];