howto: sound from the song idioteque by radiohead

classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

howto: sound from the song idioteque by radiohead

Anton Kholomiov
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: howto: sound from the song idioteque by radiohead

Steven Yi
According to Paul Lansky's page, he used FM Synthesis:

http://www.music.princeton.edu/paul/radiohead.ml.html



On Thu, Feb 2, 2012 at 10:01 AM, Anton Kholomiov
<[hidden email]> wrote:

> Please can you explain how it was done:
>
> it goes from 0:06 to 0:17
> http://soundcloud.com/citizeninsane-2/mildundleise-excerpt
>
> Origin:
> http://www.youtube.com/watch?v=DNqv3nHyteM&feature=youtube_gdata
>
>
> Anton
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email [hidden email] with body "unsubscribe csound"

Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: howto: sound from the song idioteque by radiohead

obaudouin
In reply to this post by Anton Kholomiov
That is a quotation of Paul Lansky's "Mild und Leise" (quotation of Tristan's chord in Richard Wagner's Tristan und Isolde), made with Music 360 at Princeton in 1974.


Olivier Baudouin, PhD
http://olivierbaudouin.com
MINT-OMF
Paris-Sorbonne
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: howto: sound from the song idioteque by radiohead

Anton Kholomiov
Amazing, it's so haunting, and really csound-like, and
it's 1974. I can figure out the notes but not sound. 
Tension springs out of d and e-flat as i hear it goes:

g -2, d -1, g -1,        bf -1, ef 0
ef -2, bf  -2, ef -1     g -1, d 0
g -2, d -1, g -1,        bf -1, ef 0, bf 0
ef -2, bf  -2, ef -1,    d 0, g 0, d 1 

Anton

2012/2/2 obaudouin <[hidden email]>
That is a quotation of Paul Lansky's "Mild und Leise" (quotation of Tristan's
chord in Richard Wagner's /Tristan und Isolde/), made with Music 360 at
Princeton in 1974.



-----

Olivier Baudouin, PhD
http://olivierbaudouin.com
MINT-OMF
Paris-Sorbonne

--
View this message in context: http://csound.1045644.n5.nabble.com/howto-sound-from-the-song-idioteque-by-radiohead-tp5450939p5450974.html
Sent from the Csound - General mailing list archive at Nabble.com.


Send bugs reports to the Sourceforge bug tracker
           https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email [hidden email] with body "unsubscribe csound"


Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: howto: sound from the song idioteque by radiohead

Anton Kholomiov
if 0 is octave number in the middle of the piano

2012/2/2 Anton Kholomiov <[hidden email]>
Amazing, it's so haunting, and really csound-like, and
it's 1974. I can figure out the notes but not sound. 
Tension springs out of d and e-flat as i hear it goes:

g -2, d -1, g -1,        bf -1, ef 0
ef -2, bf  -2, ef -1     g -1, d 0
g -2, d -1, g -1,        bf -1, ef 0, bf 0
ef -2, bf  -2, ef -1,    d 0, g 0, d 1 

Anton

2012/2/2 obaudouin <[hidden email]>
That is a quotation of Paul Lansky's "Mild und Leise" (quotation of Tristan's
chord in Richard Wagner's /Tristan und Isolde/), made with Music 360 at
Princeton in 1974.



-----

Olivier Baudouin, PhD
http://olivierbaudouin.com
MINT-OMF
Paris-Sorbonne

--
View this message in context: http://csound.1045644.n5.nabble.com/howto-sound-from-the-song-idioteque-by-radiohead-tp5450939p5450974.html
Sent from the Csound - General mailing list archive at Nabble.com.


Send bugs reports to the Sourceforge bug tracker
           https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email [hidden email] with body "unsubscribe csound"



Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: howto: sound from the song idioteque by radiohead

Steven Yi
In reply to this post by Anton Kholomiov
Hi Anton,

I tried to remake it but the original seems to me to have a fair
amount of variation in amplitude, panning, vibrato rate, etc.  I made
a simple version, and was mostly just experimenting with the
carrier/modular/index values for a 2 operator FM instrument.  I've
pasted below what I got. It's not really very close, but might be
useful for a start if you're continuing to work with it. (The code may
be a little tricky to sort through due to it having some generated
code from blue.)

Thanks,
steven

<CsoundSynthesizer>

<CsInstruments>
sr=44100
ksmps=1
nchnls=2
0dbfs=1


ga_bluemix_1_0 init 0
ga_bluemix_1_1 init 0
ga_bluesub_Master_0 init 0
ga_bluesub_Master_1 init 0


gk_blue_auto0 init 0
gk_blue_auto1 init 0






        instr 1 ;untitled
ipch cps2pch p4, 12
iamp = ampdbfs(p5)
ilfoadjust = p6

kcar = 3
kmod = 1

itab ftgenonce 0, 0, 65537, 10, 1

kenv linsegr 0, .3, 1, .05, .95, 2, 0
klfo lfo 1, 4 * kenv
klfo = klfo * ilfoadjust
kndx = 4 + (klfo * .25)

aout foscili (iamp ) * kenv , ipch, kcar, kmod,  kndx, itab

ga_bluemix_1_0 = ga_bluemix_1_0 +  aout
ga_bluemix_1_1 = ga_bluemix_1_1 +  aout

        endin

        instr 2 ;Blue Mixer Instrument
ktempdb = ampdb(gk_blue_auto0)
ga_bluemix_1_0 = ga_bluemix_1_0 * ktempdb
ga_bluemix_1_1 = ga_bluemix_1_1 * ktempdb
ga_bluesub_Master_0 sum ga_bluesub_Master_0, ga_bluemix_1_0
ga_bluesub_Master_1 sum ga_bluesub_Master_1, ga_bluemix_1_1
ktempdb = ampdb(gk_blue_auto1)
ga_bluesub_Master_0 = ga_bluesub_Master_0 * ktempdb
ga_bluesub_Master_1 = ga_bluesub_Master_1 * ktempdb
outc ga_bluesub_Master_0, ga_bluesub_Master_1
ga_bluemix_1_0 = 0
ga_bluemix_1_1 = 0
ga_bluesub_Master_0 = 0
ga_bluesub_Master_1 = 0

        endin


</CsInstruments>

<CsScore>








i1 0.0 0.625 6.07 -12 0
i1 0.0 0.625 7.02 -12 0
i1 0.0 0.625 7.07 -12 1
i1 0.0 0.625 7.10 -12 0
i1 0.0 0.625 8.03 -12 1
i1 2.5 0.625 6.03 -12 0
i1 2.5 0.625 6.10 -12 2
i1 2.5 0.625 7.03 -12 0
i1 2.5 0.625 7.07 -12 1
i1 2.5 0.625 8.02 -12 0
i1 5.0 0.625 6.07 -12 0
i1 5.0 0.625 7.02 -12 0
i1 5.0 0.625 7.07 -12 1
i1 5.0 0.625 7.10 -12 0
i1 5.0 0.625 8.03 -12 0
i1 5.0 0.625 8.10 -12 0
i1 7.5 2.5 6.03 -12 0
i1 7.5 2.5 6.10 -12 0
i1 7.5 2.5 7.03 -12 0
i1 7.5 2.5 8.02 -12 0
i1 7.5 2.5 8.07 -12 1
i1 7.5 2.5 9.02 -12 1
i2 0 14
e

</CsScore>

</CsoundSynthesizer>

On Thu, Feb 2, 2012 at 3:01 PM, Anton Kholomiov
<[hidden email]> wrote:

> Please can you explain how it was done:
>
> it goes from 0:06 to 0:17
> http://soundcloud.com/citizeninsane-2/mildundleise-excerpt
>
> Origin:
> http://www.youtube.com/watch?v=DNqv3nHyteM&feature=youtube_gdata
>
>
> Anton
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email [hidden email] with body "unsubscribe csound"

Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: howto: sound from the song idioteque by radiohead

Dr. Richard Boulanger-2
nice.

On Feb 9, 2012, at 8:53 PM, Steven Yi wrote:

<CsoundSynthesizer>

<CsInstruments>
sr=44100
ksmps=1
nchnls=2
0dbfs=1


ga_bluemix_1_0 init 0
ga_bluemix_1_1 init 0
ga_bluesub_Master_0 init 0
ga_bluesub_Master_1 init 0


gk_blue_auto0 init 0
gk_blue_auto1 init 0






instr 1 ;untitled
ipch cps2pch p4, 12
iamp = ampdbfs(p5)
ilfoadjust = p6

kcar = 3
kmod = 1

itab ftgenonce 0, 0, 65537, 10, 1

kenv linsegr 0, .3, 1, .05, .95, 2, 0
klfo lfo 1, 4 * kenv
klfo = klfo * ilfoadjust
kndx = 4 + (klfo * .25)

aout foscili (iamp ) * kenv , ipch, kcar, kmod,  kndx, itab

ga_bluemix_1_0 = ga_bluemix_1_0 +  aout
ga_bluemix_1_1 = ga_bluemix_1_1 +  aout

endin

instr 2 ;Blue Mixer Instrument
ktempdb = ampdb(gk_blue_auto0)
ga_bluemix_1_0 = ga_bluemix_1_0 * ktempdb
ga_bluemix_1_1 = ga_bluemix_1_1 * ktempdb
ga_bluesub_Master_0 sum ga_bluesub_Master_0, ga_bluemix_1_0
ga_bluesub_Master_1 sum ga_bluesub_Master_1, ga_bluemix_1_1
ktempdb = ampdb(gk_blue_auto1)
ga_bluesub_Master_0 = ga_bluesub_Master_0 * ktempdb
ga_bluesub_Master_1 = ga_bluesub_Master_1 * ktempdb
outc ga_bluesub_Master_0, ga_bluesub_Master_1
ga_bluemix_1_0 = 0
ga_bluemix_1_1 = 0
ga_bluesub_Master_0 = 0
ga_bluesub_Master_1 = 0

endin


</CsInstruments>

<CsScore>








i1 0.0 0.625 6.07 -12 0
i1 0.0 0.625 7.02 -12 0
i1 0.0 0.625 7.07 -12 1
i1 0.0 0.625 7.10 -12 0
i1 0.0 0.625 8.03 -12 1
i1 2.5 0.625 6.03 -12 0
i1 2.5 0.625 6.10 -12 2
i1 2.5 0.625 7.03 -12 0
i1 2.5 0.625 7.07 -12 1
i1 2.5 0.625 8.02 -12 0
i1 5.0 0.625 6.07 -12 0
i1 5.0 0.625 7.02 -12 0
i1 5.0 0.625 7.07 -12 1
i1 5.0 0.625 7.10 -12 0
i1 5.0 0.625 8.03 -12 0
i1 5.0 0.625 8.10 -12 0
i1 7.5 2.5 6.03 -12 0
i1 7.5 2.5 6.10 -12 0
i1 7.5 2.5 7.03 -12 0
i1 7.5 2.5 8.02 -12 0
i1 7.5 2.5 8.07 -12 1
i1 7.5 2.5 9.02 -12 1
i2 0 14
e

</CsScore>

</CsoundSynthesizer>

Loading...