<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hi Jose,<div class=""><br class=""><div><blockquote type="cite" class=""><div class=""><span style="font-size: 12.8000001907349px;" class="">I found the Polyphonic Universal Player [1], I really liked it, and I would like to ask you about it.</span></div><div class=""><div dir="ltr" class=""><div style="font-size:12.8000001907349px" class=""><br class=""></div><div style="font-size:12.8000001907349px" class="">- I would like to build a simple classic synthesizer, that you can change its waveform, filter and envelope parameters. How could I send these parameters to my voice? In the patch '4-noteoff.pd', I understand that you send the ADSR parameters with a list that you call tag, is it possible to create a tag thus I can use the object [route] to get each different parameter from it? Do you have an example of a similar simple synthesizer?</div><div style="font-size:12.8000001907349px" class=""><br class=""></div></div></div></blockquote><div><br class=""></div><div>There are three different ways of controlling the synthesis voices:</div><div>(see <a href="http://grrrr.org/research/software/upp/upp-tut4/" class="">http://grrrr.org/research/software/upp/upp-tut4/</a>)</div><div><br class=""></div><div>- at creation time, through object creation arguments (to upp.flow or upp.xc/upp.x2/upp.xf after your synthesis patch): Use this for fixed parameters that never change for different events.</div><div><br class=""></div><div>- at invocation time, that is, when you start the individual event. ADSR-curves would be an example. The list that goes to the left inlet of upp.flow/upp.xc/upp.x2/upp.xf starts the event. The first list element is called „tag“, it identifies the event. It should be unique for polyphonic events, e.g. a key number, but it can also be a running index </div><div><br class=""></div><div>- at run time, when the event is already active. You can use the right inlet of upp.flow/upp.xc/upp.x2/upp.xf to send a message to the event. The first atom of this message is again the „tag“, so that the event can be found. The rest of this message is your choice, it can be used to stop the event, or to change parameters. </div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div style="font-size:12.8000001907349px" class="">- I do not understand how the subpatch [spat mono] works, could you explain it?</div></div></div></blockquote><div><br class=""></div><div>spat_mono is one of a couple of spatialization abstractions - there are also spat_stereo, spat_quad, spat_varbus etc. to route your monophonic voice to different busses/loudspeakers.</div><div>spat_mono itself does hardly anything, it is just a container for your synthesis abstraction.</div><div>It routes the audio output of your synthesis abstraction to a bus defined by the first creation argument $1.</div><div>The rest of the creation arguments are used the instantiate your synthesis abstraction. $2 is its name, $3 etc. are creation arguments.</div><div><br class=""></div><div>i hope that helps,</div><div>best, Thomas</div><div><br class=""></div></div></div></body></html>