[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[sc-users] Strange behavior of event type 'phrase'?



Hello,
I tried to play a Pdef through an Event by using the event type 'phrase'.
However, the frequencies from Pdef's pattern doesn't seem to embed in the Event.
An example:

(
Pdef(\x,
    Pbind(
        \freq, Pseq( [ 400, 300, 600 ] ),
        \dur, Pseq( [0.1, 0.2, 0.3]),
        \amp, 0.4
    )
)
)

// This gives the expected phrase,
Pdef(\x).play;

// while this gives three successive middle C,
// with durations 0.1, 0.2 and 0.3
( instrument: \x, type: \phrase ).play;

// the same dur sequence, but on a 500Hz freq
( instrument: \x, type: \phrase, freq: 500 ).play;

Any ideas? Am I missing something?
Thanks