Hi everybody! I'm new to this mailing list, and I am also a new PD user. I use PD in order to send MIDI messages to the AudioMulch software, with wich I play live. (techno based music) Ok, my question is: is it possible to "syncronize" the midi messages I send from PD to AM? for example, I would like to trigger AM patterns with a PD patch in an "Ableton Live" style, so that the midi message is effectively sent by PD only at the beginning -let say- of the next bar (or 1/2, 1/4, etc etc..).. is it possible? wich object do I have to use? Thanks, and sorry for my bad english, I hope it's almost understandable! Regards,
Daniele F, Italy
rate of 96 pulses in every quarter note.
Have that metronome drive some sort of counter.
Have the counter go through a [mod 96] for quarter, double for half
note, etc.
bang the list output
Now, in my own quick demonstration implementation, I ran into one problem:
How to get rid of the "symbol" selector. For some strange reason, [route] won't do it, but it gets rid of the list selector??? I don't get this behavior. I know this has been discussed before but I can't remember the solution (not enough coffee this morning?)...
PS. Also, in the real world you have to have more clearing of the lists, ie when you turn the metronome off it should clear lists.
~David
On 12/14/06, Daniele F. dfilaretti@gmail.com wrote:
Hi everybody! I'm new to this mailing list, and I am also a new PD user. I use PD in order to send MIDI messages to the AudioMulch software, with wich I play live. (techno based music) Ok, my question is: is it possible to "syncronize" the midi messages I send from PD to AM? for example, I would like to trigger AM patterns with a PD patch in an "Ableton Live" style, so that the midi message is effectively sent by PD only at the beginning -let say- of the next bar (or 1/2, 1/4, etc etc..).. is it possible? wich object do I have to use? Thanks, and sorry for my bad english, I hope it's almost understandable! Regards,
Daniele F, Italy
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
David Powers a écrit :
How to get rid of the "symbol" selector.
I've personaly solved this with [route symbol]. Best regards, patco.
___________________________________________________________________________ Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses http://fr.answers.yahoo.com
Hallo, Patco hat gesagt: // Patco wrote:
David Powers a écrit :
How to get rid of the "symbol" selector.
I've personaly solved this with [route symbol].
Alternatively you can use [list trim] for removing any "list" or "symbol" selectors.
Frank Barknecht _ ______footils.org_ __goto10.org__
Patco wrote:
David Powers a écrit :
How to get rid of the "symbol" selector.
I've personaly solved this with [route symbol].
i remember that this does not work since several pd versions any more (i guess at least pd>=0.38) which version of pd are you using?
[$1( and [list trim] are built-in ways to do so. there is also a superfluous externals [unsymbol].
mf.adsr. IOhannes
IOhannes m zmoelnig a écrit :
Patco wrote:
David Powers a écrit :
How to get rid of the "symbol" selector.
I've personaly solved this with [route symbol].
i remember that this does not work since several pd versions any more (i guess at least pd>=0.38) which version of pd are you using?
Indeed, I just needed some more coffee before figuring it out...
[$1(
That's what I've suggested after but for some reasons I don't know, the message didn't come to the list...
mf.adsr. IOhannes
Anyway thanks for attention... Patco.
___________________________________________________________________________ Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses http://fr.answers.yahoo.com
David Powers a écrit :
(not enough coffee this morning?)...
same here, if you put [$1( at the output of [route symbol( it suppresses the 'symbol' .
Best, Patco.
___________________________________________________________________________ Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses http://fr.answers.yahoo.com
On Fri, 15 Dec 2006, David Powers wrote:
How to get rid of the "symbol" selector. For some strange reason, [route] won't do it, but it gets rid of the list selector??? I don't get this behavior. I know this has been discussed before but I can't remember the solution (not enough coffee this morning?)...
Yeah, I don't get it either, but once you know that something is a symbol message, use just $1 in a messagebox to remove the "symbol" selector.
_ _ __ ___ _____ ________ _____________ _____________________ ... | Mathieu Bouchard - tél:+1.514.383.3801 - http://artengine.ca/matju | Freelance Digital Arts Engineer, Montréal QC Canada
I think Audio Mulch responds to simple note-ons doesn't it? Try using
[1( | [metro 500] | [42( | [makenote 127 499] | | [noteout]
That sends on all midi channels afaik If you need to change channel - last inlet of noteout
On Thu, 14 Dec 2006 16:42:54 +0100 "Daniele F." dfilaretti@gmail.com wrote:
Hi everybody! I'm new to this mailing list, and I am also a new PD user. I use PD in order to send MIDI messages to the AudioMulch software, with wich I play live. (techno based music) Ok, my question is: is it possible to "syncronize" the midi messages I send from PD to AM? for example, I would like to trigger AM patterns with a PD patch in an "Ableton Live" style, so that the midi message is effectively sent by PD only at the beginning -let say- of the next bar (or 1/2, 1/4, etc etc..).. is it possible? wich object do I have to use? Thanks, and sorry for my bad english, I hope it's almost understandable! Regards,
Daniele F, Italy
Sorry, no coffee yet. I didn't see the noob bit, welcome to the puredat list
What it means is a way of showing a Pd patch -
The first object is a message box containing 1,
that gets sent to the metronome which switches it on (0 switches it off),
which sends regular pulses to the [makenote]
the first value in makenote is the "velocity"/loudness
the second is the duration in milliseconds, which is set to one less than the repeat period of the metro
The last value in noteout is the midi note number (that's the one you will have to choose to match the pattern you want to trigger in AM so maybe connect a number box up to that
On Thu, 14 Dec 2006 16:42:54 +0100 "Daniele F." dfilaretti@gmail.com wrote:
Hi everybody! I'm new to this mailing list, and I am also a new PD user.