Pure Data
Pure Data
INTRODUCTION
1. PURE DATA 2. REAL TIME GRAPHICAL PROGRAMMING 3. WHAT IS DIGITAL AUDIO?
1. PURE DATA
Pure Data (or Pd) is a real-time graphical programming environment for audio, video, and graphical processing . Pure Data is commonly used for live music performance, VeeJaying, sound effects, composition, audio analysis, interfacing with sensors, using cameras, controlling robots or even interacting with websites. Because all of these various media are handled as digital data within the program, many fascinating opportunities for cross-synthesis between them exist. Sound can be used to manipulate video, which could then be streamed over the internet to another computer which might analyze that video and use it to control a motor-driven installation. Programming with Pure Data is a unique interaction that is much closer to the experience of manipulating things in the physical world. T he most basic unit of functionality is a box, and the program is formed by connecting these boxes together into diagrams that both represent the flow of data while actually performing the operations mapped out in the diagram. T he program itself is always running, there is no separation between writing the program and running the program, and each action takes effect the moment it is completed. T he community of users and programmers around Pure Data have created additional functions (called "externals" or "external libraries") which are used for a wide variety of other purposes, such as video processing, the playback and streaming of MP3s or Quicktime video, the manipulation and display of 3-dimensional objects and the modeling of virtual physical objects. T here is a wide range of external libraries available which give Pure Data additional features. Just about any kind of programming is feasible using Pure Data as long as there are externals libraries which provide the most basic units of functionality required. T he core of Pure Data written and maintained by Miller S. Puckette (http://crca.ucsd.edu/~msp/) and includes the work of many developers (http://www.puredata.org/), making the whole package very much a community effort. Pd runs on GNU/Linux, Windows, and Mac OS X, as well as mobile platforms like Maemo, iPhoneOS , and Android.
GRAPHICAL PROGRAMMING
Pure Data, on the other hand, is a graphical programming environment. What this means is that the lines of code, which describe the functions of a program and how they interact, have been replaced with visual objects which can be manipulated on-screen. Users of Pure Data can create new programs (patches) by placing functions (objects) on the screen. T hey can change the way these objects behave by sending them messages and by connecting them together in different ways by drawing lines between them.
T his visual metaphor borrows much from the history of 20th Century electronic music, where sounds were created and transformed by small electronic devices which were connected together via patch cables.
...and an analog synthesizer patch. T he sounds that were heard were the result of the types of devices the composer used and the way in which she or he connected them together. Nowadays, much of this electronic hardware has been replaced by computer software capable of making the same sounds, and many more.
REAL TIME
T he real advantage of Pure Data is that it works in "real time". T hat means that changes can be made in the program even as it is running, and the user can see or hear the results immediately. T his makes it a powerful tool for artists who would like to make sound or video in a live performance situation.
A diagram showing how sound travels through your computer. The "Analog to Digital" & "Digital to Analog Conversion" is done by the soundcard. The "Digital System" in this case is Pure Data. Source: http://en.wikipedia.org/wiki/Image:Analogue_Digital_Conversion.png
A microphone works in reverse - vibrations in the air cause its membrane to vibrate. T he microphone turns these acoustic vibrations into an electrical current. If you plug this microphone into your computer's soundcard and start recording, the soundcard makes thousands of measurements of this electric current per second and records them as numbers.
An example of 4-bit sampling of a signal (shown in red). This image shows that 16 possible values can be made from 4-bits--a very low dynamic range indeed! In Pd, our scale of numbers goes from -1 to 1, with 0 in the middle. Source: http://en.wikipedia.org/wiki/Image:Pcm.svg T he number we use to record each sample has a value between -1 and +1, which would represent the greatest range of movement of our theoretical loudspeaker, with 0 representing the speaker at rest in the middle position.
Graphical depiction of a sine wave, which crosses zero from the negative to the positive domain. When we ask Pd to play back this sound, it will read the samples back and send them to the soundcard. T he soundcard then converts these numbers to an electrical current which causes the loudspeaker to vibrate the air in front of it and make a sound we can hear.
The waveform on the left is at full volume (i.e. it's peaks are at -1 and 1). The volume of the waveform on the right has been doubled, so that it peaks at -2 and 2. The graph shows what would be heard from the soundcard: a clipped signal with the peaks of the sinewave removed.
Another problem occurs if one tries to play back a frequency which is greater then half the sampling rate which the computer is using. If one is using a sampling rate of 44,100 Hz, the highest frequency one could theoretically play back without errors is 22,050 Hz. T he reason being, a computer needs at least two samples to reproduce a single frequency. T he number that represents half the sampling rate is called the Nyquist number . If you were to tell Pd to play a frequency of 23,050 Hz, what you would hear is one tone at 23,050 Hz, and a second tone at 21,050 Hz. T he difference between the Nyquist number (22,050 Hz) and the synthesized sound (23,050 Hz) is 1,000 Hz, which you would both add to and subtract from the Nyquist number to find the actual frequencies heard. So as one increased the frequency of the sound over the Nyquist number, you would hear one tone going up, and another coming down. T his problem is referred to as foldover or aliasing .
Here we can see two possible waveforms which could be described by the samples show. The red line shows the intended waveform, and the blue line shows the "aliased" waveform at <Desired Frequency> - (<Desired Frequency> - <Nyquist Number>). Source: http://en.wikipedia.org/wiki/Image:AliasingSines.png
DC OFFSET
DC offset is caused when a waveform doesn't cross the zero line, or has unequal amounts of signal in the positive and negative domains. T his means that, in our model speaker, the membrane of the speaker does not return to its resting point during each cycle. T his can affect the dynamic range of the sound. While DC offset can be useful for some kinds of synthesis, it is generally considered undesirable in an audio signal.
BLOCK SIZE
Computers tend to process information in batches or chunks. In Pd, these are known as Blocks. One block represents the number of audio samples which Pd will compute before giving output. T he default block size in Pd is 64, which means that every 64 samples, Pd makes every calculation needed on the sound and when all these calculations are finished, then the patch will output sound. Because of this, a Pd patch cannot contain any DSP loops, which are situations where the output of a patch is sent directly back to the input. In such a situation, Pd would be waiting for the output of the patch to be calculated before it could give output! In other words, an impossible situation. Pd can detect DSP loops, and will not compute audio when they are present. For more information, see the "T roubleshooting" section.
10
INSTALLING
4. INSTALLING ON OS X 5. INSTALLING ON WINDOWS 6. INSTALLING ON UBUNTU 7. INSTALLING ON DEBIAN
11
4. INSTALLING ON OS X
Software name : Pd-extended Homepage : http://puredata.info Software version used for this installation: Pd-extended 0.39.3 Operating System use for this installation: Mac OS 10.4.11 Recommended Hardware : Any Mac running Mac OS X 10.4 or later T o begin the installation visit the download page for Pure Data ( http://puredata.info/downloads ) :
You can download either Miller Puckette's version of Pure Data, or Pdextended. Miller's version of Pure Data is called "Pd-vanilla" because it has just the basic minimum set of functionality. It does not contain any external libraries or any of the features developed by the Pure Data community which are included in Pd-extended. We will use Pd-extended for this manual, so chose your installer from the "Pd-extended" section of this webpage. Since there is not a "Universal Binary" for Pd-extended, you will want to select the Mac OS X installer that best suits your computer. Use the one labelled "Mac OS X i386" for the newer, Intel-processor equipped Mac computers. For example, any Mac Pro or MacBook is an Intel Mac. Any iMac that is less that a couple years old is an Intel Mac. Use the "Mac OS X PowerPC" installer if you have a PowerMac, PowerBook, or iBook with a G4 or G5 processor running Mac OS 10.4 "T iger" or later. Older iMacs use G4 and G5 processors, so they use the PowerPC version as well.
12
If your computer has a G3 processor or is running Mac OS X 10.3 Panther, then you will need to use older version of Pd-extended, 0.39.3. You can see all of the older versions on the downloads page by clicking on . T here you can also find installers for versions of Mac OS X older than 10.3 Panther. Once you've downloaded the right installer, you'll have a .dmg (Disk Image) on your harddrive.
Double click to open and mount it, and you will have a chance to read and accept the License Agreement.
Once you click "Agree", the Disk Image will mount and automatically open. T hen simply drag the Pd-extended.app to the provided shortcut to your Applications folder (or to another location of your choice.) T his will copy Pd-extended to your harddrive.
13
After that, make sure to check the "ReadMe" file for important installation information.
As indicated, the Pd-extended.app is setup by default to load most of the included external libraries. If you want to change the libraries which are loaded at startup time, or any of the other startup settings, please notice the instructions here in the "ReadMe", and be sure to read the chapter "Configuring Pure Data" in this manual. From here, you can open up your "Applications" folder in the Finder , and start Pd by clicking the "Pd-extended.app" icon found there.
14
15
1. Insert your OS X T iger Install Disc (# 1). Scroll down to locate the Optional Installs icon and double-click it
16
4. Click Agree
6. Click the small triangle directly next to Applications and then place a check in the box labeled X11. When youre ready, click Upgrade.
17
18
19
5. INSTALLING ON WINDOWS
Software name : Pd-extended Homepage : http://puredata.info Software version used for this installation : Pd-extended 0.39-3 Operating System use for this installation : Microsoft Windows XP Recommended Software : Windows 2000 or later Recommended Hardware : 300 Mhz processor (CPU) minimum T o begin the installation visit the download page for Pure Data ( http://puredata.info/downloads ) :
You can download either Miller Puckette's version of Pure Data, or Pdextended. Miller's version of Pure Data is called "Pd-vanilla" because it has just the basic minimum set of functionality. It does not contain any external libraries or any of the features developed by the Pure Data community which are included in Pd-extended. We will use Pd-extended for this manual, so chose your installer from the "Pd-extended" section of this webpage. In the first group of links under "pd-extended'"click on the link marked "Microsoft Windows (2000/XP/Vista)" and you should see something like this (this example using Firefox) :
20
Press "OK" and the download should proceed, leaving you (hopefully) with a dialog box that informs you the download is complete. If you are using Firefox then the dialog may look something like this:
Now you can either browse your computer to look for the installer icon which will look something like this :
you can double click on this icon to start the installation process. Alternatively, you may wish to click Open in the download dialog :
If you choose to do it this way then you may see the following window :
if you see this click "OK" and continue. Either of the steps above should put you in the same place, which is this :
21
now press "Next >" and the installation process will begin. You will see this screen :
T his is the standard license page. If you don't agree with the license you can't install the software. So, my recommendation is - click on the green button next to 'I accept the agreement' and then press 'Next >'. You will see the following :
22
T he above assists you in deciding where to install Pd-extended. Unless you have a good reason to, leave the default settings as they are. If you have a good reason, and know what you are doing, you can press 'Browse' and choose another place to install Pd-extended on your computer. If you decide to change the defaults, or keep them, youy must then press 'Next >' to continue :
T he above screen is merely choosing what to call the installation in the Windows 'Start Menu', Just leave it as it is and press 'Next >'.
23
You really don't want to uncheck the last two boxes as they are necessary for the installation. T he first two choices are merely cosmetic and effect the 'shortcut' icons. It doesn't matter if you check these or leave them as they are. When you are ready press 'Next>'.
T he above is the summary window. Press 'Install' and the installation will commence. It might take some time depending on how quick your computer is. While you wait the installer will present you with progress bars :
24
T hen when the installation is complete you will see a final screen :
If you click 'Finish' your browser will open the (rather unattractive) Read Me page :
25
T his is rather important, so you need to open the 'Program Files' in your file browser. Usually you can right-click on the Windows Start Menu to open a file browser :
26
Double-click on 'Program Files' and the the directory called 'pd', in this window you should see a file called 'pd-settings':
Press 'Yes' :
27
T hen press 'OK' and that window will disappear. Now you probably want to actually open Pure Data. Click on the Windows Start Menu and slide across to 'All Programs' and 'Pure Data', then finally again to the 'Pure Data' icon :
28
29
6. INSTALLING ON UBUNTU
Software name : Pure Data Extended Homepage : http://puredata.info Software version used for this installation : Pd-Extended 0.39-3 Operating System use for this installation : Ubuntu 8.04 (tested also on 7 .10) Recommended Hardware : 300 Mhz processor (CPU) minimum Installation on Ubuntu Gutsy (7 .10) and Ubuntu Hardy (8.04) is the same process. It is made a little tricky because Pure Data Extended requires some software that is not normally part of these operating systems but is included in an older version of Ubuntu. So we must indulge a short work around to get Pure Data Extended working correctly. T hankfully it is quick and simple.
You will be asked for a password. Enter in your adminstrator password (not your user password) and you will see Synaptic open.
30
Now we need to add the older software repositories too install these 2 software libraries. Click on Settings and then Repositories and you will see the Synaptic Repository Manager :
Now click on the second tab entitled Third-Party Software. It is here that you will now need to enter information about these two repositories:
deb http://archive.ubuntu.com/ubuntu/ feisty main restricted deb-src http://archive.ubuntu.com/ubuntu/ feisty main restricted
31
You need to add them one at a time by clicking on + Add and typing one of the above lines into the text field provided and then press Add Source. T hen do the same for the next line. Now close the repository manager window and you will be asked to reload the repository information because it has changed. T his can be done by pushing the blue Reload button on the Synaptic interface. T hen quit the Synaptic Package Manager.
You can download either Miller Puckette's version of Pure Data, or Pure Data Extended. Miller's version of Pure Data is called "pd-vanilla" because it does not contain any external libraries or any of the features developed by the Pure Data community which are included in Pure Data Extended. We will use Pure Data Extended for this manual, so chose your installer from the "pd-extended" section of this webpage. In the very first section click on the link "Debian and Ubuntu (intel i386 processor)", this will forward you to a download page. Don't do anything else, the download should start automatically. When the file has downloaded browse to the files and right click on it and choose 'Open with "GDebi Package Installer"'
32
Now press Install Package - you will be asked to enter your password, and then Pure Data Extended will be installed. When the process is finished close GDebi and open Pure Data Extended:
33
Now it is important to open the Synaptic Package Manager again and disable the two new repositories so they don't cause issues with future software installations.
34
7. INSTALLING ON DEBIAN
Software name : Pure Data Extended Homepage : http://puredata.info Software version used for this installation : Pd-Extended 0.39-3 Operating System use for this installation : Debian Linux (4.0 rc3 stable) Recommended Hardware : 300 Mhz processor (CPU) minimum T o install Pure Data Extended, first visit the download page ( http://puredata.info/downloads ) :
In the very first section click on the link "Debian and Ubuntu (intel i386 processor)", this will forward you to a download page. Don't do anything else, the download should start automatically. If you used the default Debian web browser (Ice Weasel) you will see the following :
35
Don't use the archive manager, instead choose 'Save to Disk' and press 'OK'. When your file has downloaded you must browse to it. T he default download location is the Desktop, on my Desktop I see this :
Right-click on this icon and choose 'Open with "GDebi Package Installer"':
36
T his is the general package (software) installer for Debian. Just click "Install Package" and you will be asked for the administrator ('root') password for your computer :
37
38
GETTING STARTED
8. CONFIGURING PURE DATA 9. ADVANCED CONFIGURATION 10. STARTING PURE DATA
39
BASIC CONFIGURATION
T he first thing we'll want to do once Pd is running is make sure that the audio is configured correctly. T his includes choosing the correct drivers, the correct soundcard and the proper latency for your system to be both responsive and glitch-free. Also, if you have any MIDI devices (such as keyboards or fader boxes), you can set Pd up to use those as well. After that, you can test the audio and MIDI to make sure it is working properly.
AUDIO DRIVERS
Pd can use a variety of audio drivers to connect to the soundcard. So our first step is to chose the correct ones. T his can be done via the "Media" menu: OSX : Media -> portaudio/jack Linux : Media -> OSS/ALSA/jack Windows : Media -> ASIO (via portaudio)
T his part of the menu should list the available audio drivers on your system, and allow you to switch between them. T he drivers you have depend on your operating system, and what drivers you have installed on that operating system. Keep in mind you may not have all of these installed on your computer: Linux OSS ALSA jack OS X
40
portaudio jack Windows MMIO ASIO Linux users are encouraged to investigate JACK (Jack Audio Connection Kit) , an audio server which allows different audio applications to be connected with virtual "cables" in your computer. JACK, and it's Graphical User Interface QJackctl, should be available from whatever Linux distribution you happen to be running. Many OS X users have also reported that audio runs smoother and with less CPU load when using JackOSX, an implementation of the JACK server and user interface for the Mac OS. JackOSX can be found at http://jackosx.com/ And Windows users may find configuring their ASIO soundcards much easier by using ASIO4ALL , which can be downloaded from http://www.asio4all.com/
AUDIO SETTINGS
OSX : Pd-extended -> Preferences -> Audio Settings Linux & Windows : Media -> Audio Settings
T his is one of the most important configuration menus in Pd. Here you can change the sample rate, delay, input and output devices as well as the number of channels they use.
Sample rate
T he sampling rate for CD quality audio is 44,100 Hz. Most computer soundcards run at this sampling rate, or at 48,000 Hz, by default. Choose the rate that matches the rate of your soundcard or audio drivers here.
Delay (msec)
41
Your computer needs a certain amount of time to process all the information coming out of Pd and send it to the soundcard for playback. Likewise, when you are recording, Pd needs a certain amount of time to gather all the information coming from the soundcard. T he term for this delay is called latency, and it measures the amount of time between the moment when you tell Pd to do something (for example by playing a note on a keyboard), and when you hear the result of that action. A shorter latency means you will hear the results quicker, giving the impression of a more responsive system which musicians tend to appreciate. However, with a shorter latency you run a greater risk of getting an interruption or 'glitch' in the audio. T his is because the computer does not have enough time to "think about" the sound before sending it to the soundcard. A longer latency means less chances of glitches, but at the cost of a slower response time. It is up to you to find the best balance for your own needs, but the default latency in Pd is 50 milliseconds. You can increase or decrease the latency of Pd by entering a value in milliseconds in this box. If you are using the JACK API, the delay will be set by your JACK audio server and manual inputs in the field 'delay' are without effect.
Input Device
Choose the soundcard you wish to use with Pd and the number of channels you want to use. In the case of a normal, stereo soundcard you would enter the number 2. For a multichannel soundcard, you may choose some or all of the channels. Make sure this is checked if you would like to record sound into Pd.
Output Device
Choose the same soundcard as you selected for the Input Device, and a matching number of channels as you selected for the Input Device as well. Although it may be possible to use different soundcards and unmatched numbers of channels for input and output on some systems, this can also cause problems for Pd, so experiment first. Make sure the checkbox next to the device is checked.
MIDI SETTINGS
OSX : Pd -extended -> Preferences -> MIDI Settings Linux & Windows : Media -> MIDI Settings
42
On Linux, you have a choice of using the built-in MIDI drivers, or the ALSA-MIDI drivers if they are installed. If you are using the built-in drivers, you should be able to choose which devices to Pd will send and receive MIDI messages with. You may also select "use multiple devices" if you have several applications or devices using MIDI. T his method is rather complex, because you must set up the devices by number using your startup flags and you will not be able to change them while Pd is running. Using the ALSA-MIDI drivers is easier to manage, and therefore recommended. When using the ALSA MIDI drivers on Linux, you can tell Pd the number of In and Out Ports to use here. T hese are connections which other MIDI applications or devices can use to connect to and from Pd. T o connect devices or applications, you can use ALSA MIDI with the JACK audio drivers and the Qjackctl if you have them installed. In Qjackctl, you will see a tab for MIDI, and be able to connect the inputs and outputs of MIDI devices and applications by clicking on them. On Mac OS X, to use MIDI you must first open the "Audio MIDI Setup.app", which is located in your Applications/Utilities folder. Once this application is open, and you have connected your external MIDI devices (if any), you should be able to see your MIDI devices in this window. Minimize the "Audio MIDI Setup.app" and return to Pd and this "MIDI Settings" menu. Now you will be able to choose which devices with which Pd will send and receive MIDI messages. You may also select "use multiple devices" if you have several applications or devices using MIDI.
43
First, click one of the radio buttons marked either "-20" or "-40" under "T EST SIGNAL". If your audio is set up correctly, you will hear a test tone and you will see some of the number boxes above "AUDIO INPUT " changing to measure any incoming audio signal from the line in or microphone of your computer. If you have any external MIDI devices or a piece of MIDI software connected to Pd, you can test the connection by sending MIDI data to Pd and watching to see if the number boxes connected to [notein] and [ctlin] change.
44
9. ADVANCED CONFIGURATION
Since Pd-Extended is installed with most of the settings, search paths and external libraries already configured, many users won't have to worry about configuring these parts of Pure Data at all. Advanced users, however, may be interested in customizing these settings. T he settings which can be changed in Pure Data are the same as those available when starting from the command line:
audio configuration flags: -r <n> -- specify sample rate -audioindev ... -- audio in devices; e.g., "1,3" for first and third -audiooutdev ... -- audio out devices (same) -audiodev ... -- specify input and output together -inchannels ... -- audio input channels (by device, like "2" or "16,8") -outchannels ... -- number of audio out channels (same) -channels ... -- specify both input and output channels -audiobuf <n> -- specify size of audio buffer in msec -blocksize <n> -- specify audio I/O block size in sample frames -sleepgrain <n> -- specify number of milliseconds to sleep when idle -nodac -- suppress audio output -noadc -- suppress audio input -noaudio -- suppress audio input and output (-nosound is synonym) -listdev -- list audio and M IDI devices -oss -- use O SS audio API -32bit ----- allow 32 bit O SS audio (for RM E Hammerfall) -alsa -- use ALSA audio API -alsaadd <name> -- add an ALSA device name to list -jack -- use JACK audio API -pa -- use Portaudio API -asio -- use ASIO drivers and API -mmio -- use M M IO drivers and API M IDI configuration flags: -midiindev ... -- midi in device list; e.g., "1,3" for first and third -midioutdev ... -- midi out device list, same format -mididev ... -- specify -midioutdev and -midiindev together -nomidiin -- suppress M IDI input -nomidiout -- suppress M IDI output -nomidi -- suppress M IDI input and output -alsamidi -- use ALSA midi API other flags: -path <path> -- add to file search path -nostdpath -- don't search standard ("extra") directory -stdpath -- search standard directory (true by default) -helppath <path> -- add to help file search path -open <file> -- open file(s) on startup -lib <file> -- load object library(s) -font-size <n> -- specify default font size in points -font-face <name> -- specify default font -font-weight <name>-- specify default font weight (normal or bold) -verbose -- extra printout on startup and when searching for files -version -- don't run Pd; just print out which version it is -d <n> -- specify debug level -noloadbang -- suppress all loadbangs -stderr -- send printout to standard error instead of G UI -nogui -- suppress starting the G UI -guiport <n> -- connect to pre-existing G UI over port <n> -guicmd "cmd..." -- start alternatve G UI program (e.g., remote via ssh) -send "msg..." -- send a message at startup, after patches are loaded -noprefs -- suppress loading preferences on startup -rt or -realtime -- use real-time priority -nrt -- don't use real-time priority -nosleep -- spin, don't sleep (may lower latency on multiCPUs)
All of the Audio and MIDI configuration flags in this list are set using the menus described above. Note that not all settings are available on all platforms (for example, there are no -asio or -mme options on Mac OS X or Linux, nor the -alsa, -oss, -pa or -jack settings on Windows, etc...)
45
T he next most-important configuration options have to do with the external libraries which Pd loads at startup time (and thus which objects you will be able to use), as well as the locations in your file system where Pd can search for these externals and for other resources the program uses to run. Pure Data uses a system called pdsettings to store all these options and use them every time Pd starts up. T he pdsettings can be configured through various menus in the application, as we saw with the audio and MIDI settings. But they can also be configured by other tools, which are specific to each operating system. We'll start by looking at the built-in menus for Startup and Path, and then we'll look at other methods to change the configuration options.
STARTUP FLAGS
OSX : Pd-extended -> Preferences -> Startup Linux & Windows : File -> Startup
T he things we want to pay attention to in this menu are the externals we load, which are listed as "Pd binaries to load (on next startup)", and whether or not we "defeat real-time scheduling". Under "Pd binaries to load", you can make a list of the external libraries which you have installed on your system which you would like to be available in Pd. You will then be able to run these externals the next time you start Pd. Because you are using the Pd-extended distribution, this section should be completed for you with a list of the externals which come with the distribution. If you would like to add more libraries to the ones listed, the simplest way is to add them to an existing line of the Startup menu, like so:
G em:my_new_lib
And then click "Save all settings" and "OK". However, Pd-Extended is still a program which is under development, and this method has been noted to have some problems lately, so you may wish to try the Platform-Specific Configuration Tools below.
46
If you are running Pd on Linux, you may want to experiment with using "real-time scheduling" to improve the audio quality by allowing Pd faster access to the soundcard. On some systems, however, you must run Pd as the administrator of the system (i.e. "root" or "su") to have permission to do this. T o use "real-time scheduling", enter the following in your "startup flags"
-rt
But keep in mind that if Pd overloads or locks up your system by using too much of the processer's resources, it can be very difficult to quit the program when using "real-time scheduling". Users on Mac OS X should not use the "real-time scheduling" flag, and should click the box which says "defeat real-time scheduling" for better audio quality.
PATH
OSX : Pd-extended -> Preferences -> Path Linux & Windows : File -> Path
Shown here is the Mac OS X menu for setting the Paths. T hese are the Search Paths that Pd will use to locate external libraries, help patches, and other any patches, fonts, soundfiles, videos ar anything else which you may need while working in the program. If you would like to add more directories to the ones listed, the simplest way is to add them to an existing line of the Path menu, like this:
/Library/Pd:/home/my_name/my_new_path
And then click "Save all settings" and "OK". However, as with the Startup menu, some people have had problems using this method, so you may wish to try the Platform-Specific Configuration Tools below.
47
Quite a bit of this configuration has been taken care of by PdExtended already, so let's look at some real-world examples of when you might want to add a path. One situation would be if you want to use an audio file or a collection of audio files in your patch, but you don't want to have to specify the whole location every time it's needed in any object or message. So, instead of typing
/home/beaver/my_soundfiles/spoken/boy/geewhiz.wav
or
/home/beaver/my_soundfiles/spoken/girl/golly.wav
Another very common situation is when you would like to use a Pd patch you have saved as an abstraction (which essentially treats the saved patch like another Pd object) inside another Pd patch. In this case, you must either have the patch you wish to use as an abstraction saved in the folder as the "parent" patch you wish use it in, or you must add the folder containing the abstraction to your Path. For example the path:
/home/pdfreek/puredata/abstractions/reverb_tools
might contain various kinds of reverb abstractions that the user "pdfreek" created to be reused in other patches. For more information about abstractions, please see the DataFlow Tutorials chapter. Finally, if you want to compile your own external Pd libraries, or use ones which you have downloaded from the internet, then you need to place the binary files (which end in .pd_linux for Linux, .pd_darwin for OS X and .dll for Windows) in a folder and add that folder to your path, such as:
~/pd/extra
where ~/ means your home directory (i.e. /home/"username" on Linux and /User/"username" on Mac OS X). Please note that in the case of name clashes (where two objects or files have the same name), the one which is loaded last takes precedence over all others. An example of this is the object [counter], which exists in several external libraries, and which has a different function in each one!
48
OS X: ~/Library/Preferences/org.puredata.pd.plist (~ means your home folder) Windows: HKEY_LOCAL_MACHINE -> SOFTWARE -> Pd-extended (using REGEDIT .EXE, etc.) Linux: ~/.pdextended (~ means your home folder) Pure Data vanilla OS X: ~/Library/Preferences/org.puredata.pd.plist (~ means your home folder) Windows: HKEY_LOCAL_MACHINE -> SOFTWARE -> Pd (using REGEDIT .EXE/REGEDIT 32.EXE) Linux: ~/.pdsettings (~ means your home folder)
Linux
Linux users may edit the file directly via command line applications such as joe, vim, pico or nano, or with whatever other text editing application comes with your distribution:
$ nano /home/derek/.pdsettings G NU nano 1.2.4 File: /home/derek/.pdsettings
audioapi: 5 noaudioin: False audioindev1: 0 4 noaudioout: False audiooutdev1: 0 4 audiobuf: 50 rate: 44100 nomidiin: False midiindev1: 0 nomidiout: False midioutdev1: 0 path1: /home/derek/pd/rradical/memento path2: /home/derek/pd/ix_toxy path3: /home/derek/pd/berlin path4: /home/derek/pd/rradical/memento/tutorial path5: /home/derek/workshop_patches path6: /usr/local/lib/pd/doc/5.reference path7: /usr/local/lib/pd/extra/xjimmies npath: 7 standardpath: 1 verbose: 0 loadlib1: pool loadlib2: iemlib1 loadlib3: iemlib2 loadlib4: iem_mp3 loadlib5: iem_t3_lib loadlib6: O SC loadlib7: zexy nloadlib: 7 defeatrt: 0 flags: -alsamidi -rt ^G G et Help ^K Cut Text ^X Exit UnCut Txt ^O ^C ^J ^T To WriteO ut Cur Pos Justify Spell [ Read 31 lines ] ^R Read File ^Y Prev Page ^W Where Is ^V Next Page ^U
Remember that if you add a new path or loadlib, then you will need to give it a number higher than the last existing one, and you will need to change the npath or nloadlib to the number of new paths or loadlibs you have added. In the above pdsettings, to add the loadlib pdp, you would have to add/change the following:
loadlib8: pdp
49
nloadlib: 8
OS X
OS X users may wish to try using the Property List Editor.app, which can be installed from the XCode Tools or Server Tools CDs available for free from Apple: http://developer.apple.com/tools/xcode/ Here is the Property List Editor, with the org.puredata.pdextended.plist file open:
You can click directly in the Value field to change a value, or use the New Sibling button to add a new line. T he command line utility defaults can also be used. T he following line in the terminal lists all the pdsettings in org.puredata.pdextended.plist:
d e f a u lt s re a d o rg .p u re d a t a .p d extended
loadlib30 test
and this command can be used to delete one line from pdsettings:
defaults delete org.puredata.p d extended loadlib30
In this case, loadlib30 represents the next possible line that could be added to load a library (29 libraries are loaded already), and test represents a hypothetical library which we add to the startup in the first case using the write command, and remove from the startup in the second case by using the delete command. For more information about defaults, type:
defaults --help
Windows
50
Windows users may also use the REGEDIT program to edit their pdsettings. T his program comes with the Windows operating system, and can be located under the name REGEDIT .EXE or REGEDT 32.EXE (Windows XP or newer). Please note: manually editing the Windows Registry files using a text editor instead of REGEDIT is generally considered unsafe, since errors here can disrupt the entire operating system! T hose interested in more details about the Registry should read: http://en.wikipedia.org/wiki/Windows_Registry# Editing
51
On Linux, your system may also have a menu bar, such as "Programs/Multimedia" or "Programs/Sound" where Pd can be started by clicking the menu item.
Why would we want to open Pd by command line? T he most common reason would be is if we wanted to use a different set of flags than the default ones. For example, if you were using Pd in a live performance, and you wanted it to open up the same patch whenever you started it in this situation, you might use the command:
52
Which would start Pd and open the patch liveset.pd. You could also add other startup flags, such as which soundcard and drivers to use, which external libraries to load or which search paths to add. Flags are additional pieces of information which can alter the configuration of Pd for that particular startup, rather than the pdsettings which we looked at in the ConfiguringPd chapter, which affect the program every time it starts. Like almost any program launched by command line, you can add the flag "--help" to see a long list of configuration options, which gives you some idea of the different possibilities for starting up Pd:
$ /Applications/Pd-0.39.2-extendedtest4.app/Contents/Resources/bin/pd --help usage: pd [-flags] [file]... audio configuration flags: -r <n> -- specify sample rate -audioindev ... -- audio in devices; e.g., "1,3" for first and third -audiooutdev ... -- audio out devices (same) -audiodev ... -- specify input and output together -inchannels ... -- audio input channels (by device, like "2" or "16,8") -outchannels ... -- number of audio out channels (same) -channels ... -- specify both input and output channels -audiobuf <n> -- specify size of audio buffer in msec -blocksize <n> -- specify audio I/O block size in sample frames -sleepgrain <n> -- specify number of milliseconds to sleep when idle -nodac -- suppress audio output -noadc -- suppress audio input -noaudio -- suppress audio input and output (-nosound is synonym) -listdev -- list audio and M IDI devices -jack -- use JACK audio API -pa -- use Portaudio API (default audio API for this platform: portaudio) M IDI configuration flags: -midiindev ... -- midi in device list; e.g., "1,3" for first and third -midioutdev ... -- midi out device list, same format -mididev ... -- specify -midioutdev and -midiindev together -nomidiin -- suppress M IDI input -nomidiout -- suppress M IDI output -nomidi -- suppress M IDI input and output other flags: -path <path> -- add to file search path -nostdpath -- don't search standard ("extra") directory -stdpath -- search standard directory (true by default) -helppath <path> -- add to help file search path -open <file> -- open file(s) on startup -lib <file> -- load object library(s) -font <n> -- specify default font size in points -typeface <name> -- specify default font (default: courier) -verbose -- extra printout on startup and when searching for files -version -- don't run Pd; just print out which version it is -d <n> -- specify debug level -noloadbang -- suppress all loadbangs -stderr -- send printout to standard error instead of G UI -nogui -- suppress starting the G UI -guiport <n> -- connect to pre-existing G UI over port <n> -guicmd "cmd..." -- start alternatve G UI program (e.g., remote via ssh) -send "msg..." -- send a message at startup, after patches are loaded -rt or -realtime -- use real-time priority -nrt -- don't use real-time priority
T o learn more about Pd's startup options, please see the Configuring Pd chapter.
Once you have created a command line for your specific situation, you can save that command as a script , which is a short file containing a list of commands, which can be run by typing its name in the terminal or shell. T he exact format of your script depends on which operating system you use.
Windows
Windows uses the DOS language for its commands, so we must create a .bat (DOS batch) file containing the location of the Pd program and the startup flags we want to use. Using a simple text editor, make a file named "pdstart.bat", and place the following in it, for example
"c:\pd\bin\pd.exe" -font 10 -path "c:\pd\doc\vasp" -lib cyclone -lib iem_t3_lib -lib iem_mp3 -lib mjLib -lib O SC -lib percolate -lib vasp lib xeq -lib xsample -lib zexy -lib iemlib1 -lib iemlib2 -listdev % 1 %2 %3 %4 %5 %6 %7 %8 %9
T hough it may appear to be many lines, this command must in fact be one long line with no breaks. If the version of Windows you are running has a "Save as type" option, choose the type "All files" to prevent your .bat file from being saved as a text file. Once this is saved, you can double-click on the file to run it.
Linux and OS X
Since both Linux and OS X use the same Unix-type system to interpret and run command lines, the process for creating a script is the same for both. In your favorite text editor, create a new file and start it with the line:
#! /bin/bash
which tells the operating system that what it is reading is a script, and that it will use the bash command line interpreter. On the line below that, copy this or a similar line:
/usr/local/lib/pd -font 10 -path /home/pdfreek/pd/my_abstractions -lib cyclone -lib iem_t3_lib -lib iem_mp3 -lib mjLib -lib O SC -lib percolate -lib vasp -lib xeq -lib xsample -lib zexy -lib iemlib1 -lib iemlib2 -open /home/pdfreek/pd/liveset3.pd
T his should be all in one line, with no breaks. Please note that you should give it the correct path to the Pd program in the beginning (which could be different if you are running OS X for example), and you should replace the example flags with ones of your own. Once you have written and saved this file with the .sh (shell script) file extension, such as "start_pd.sh", you must make it executable as a script with the following command:
chmod +x start_pd.sh
After you have done this, you can start this script, which will run Pd with all the flags you have added to it, by typing:
sh start_pd.sh
Some Linux window managers such as KDE or Gnome may support double-clicking to start shell scripts either by default or by selecting the default application. On OS X, you could configure the Finder to open .sh files with the T erminal.app by default (but then you would have to manually chose to open them with T extEdit.app for editing later on).
One of the beautiful things about the Unix system, which both Linux and OS X are based on, is that it is designed to allow many applications to communicate with each other and work together. T his means that shell scripts can be constructed to do an enormous amount of tasks. For example, the following script for Linux starts the JACK audio server (with some flags of its own), opens the Qjackctl interface for JACK and then starts Pd with the -jack flag and the -open flag listing two specific files:
#! /bin/bash jackd -d alsa -d hw -r 44100 -p 1024 -s & /usr/bin/qjackctl & sleep 5 ; /usr/local/bin/pd -jack -open /home/derek/pd/delnet/delaynet.pd:/home/derek/pd/echoplex_footswitches/midiswitches.pd
T he ampersand (&) between the commands means that the command preceeding it will be run in the background. In other words, the previous command will keep running while we execute the next ones, instead of quitting. T he section "sleep 5" tells the shell to wait 5 seconds before running the next command, in this case in order to give JACK time to start up. T he semicolon (;) is used to seperate jobs, meaning that the next command won't be run until the previous one is finished (in the case of "sleep 5") or sent to the background (in the case of the ampersand symbol). T his script could be expanded to open other applications (in the following case, the looping application SooperLooper ), use the aconnect application to make ALSA MIDI connections from Pd to SooperLooper, and use the jack_connect command to make audio connections between Pd, SooperLooper and 6 channels of a sound card via the JACK audio server:
#! /bin/bash jackd -d alsa -d hw -r 44100 -p 1024 -s & /usr/bin/qjackctl & sleep 5 ; /usr/local/bin/pd -jack -open /home/derek/pd/delnet/delaynet.pd:/home/derek/pd/echoplex_footswitches/midiswitches.pd & sleep 5 ; /usr/local/bin/sooperlooper -L /home/derek/pd/echoplex_footswitches/3loops.slsess -m /home/derek/pd/echoplex_footswitches/3loops.slb & sleep 5 ; /usr/local/bin/slgui & sleep 5 ; aconnect 'Pure Data':1 'sooperlooper_1':0 ; jack_connect alsa_pcm:capture_1 sooperlooper_1:common_in_1 ; jack_connect alsa_pcm:capture_2 sooperlooper_1:common_in_2 ; jack_disconnect alsa_pcm:capture_1 pure_data_0:input0 ; jack_disconnect alsa_pcm:capture_2 pure_data_0:input1 ; jack_disconnect alsa_pcm:capture_3 pure_data_0:input2 ; jack_disconnect alsa_pcm:capture_4 pure_data_0:input3 ; jack_connect alsa_pcm:capture_3 pure_data_0:input0 ; jack_disconnect pure_data_0:output0 alsa_pcm:playback_1 ; jack_disconnect pure_data_0:output1 alsa_pcm:playback_2 ; jack_disconnect pure_data_0:output2 alsa_pcm:playback_3 ; jack_disconnect pure_data_0:output3 alsa_pcm:playback_4 ; jack_connect pure_data_0:output0 alsa_pcm:playback_7 ; jack_connect pure_data_0:output1 alsa_pcm:playback_8 ; jack_connect sooperlooper_1:loop0_out_1 alsa_pcm:playback_1 ; jack_connect sooperlooper_1:loop0_out_2 alsa_pcm:playback_2 ; jack_connect sooperlooper_1:loop1_out_1 alsa_pcm:playback_3 ; jack_connect sooperlooper_1:loop1_out_2 alsa_pcm:playback_4 ; jack_connect sooperlooper_1:loop2_out_1 alsa_pcm:playback_5 ; jack_connect sooperlooper_1:loop2_out_2 alsa_pcm:playback_6
or
jack_connect --help
55
Bash shell scripting is a huge area to investigate, curious readers are encouraged to check out one of the many websites and books detailing the Bash environment.
56
THE INTERFACE
11. THE INTERFACE 12. TROUBLESHOOTING
57
As of Pd 0.39, all of the messages that Pd produces are sent to the main Pd window (before this, they were sent to the shell which was running Pd). When you start Pd, this main Pd window should tell you important information, such as the externals you are loading and whether any errors occurred while loading them, as well as any errors connecting to the soundcard. Later, you will also use this main Pd window to see information about the patch you are working on, as well as for debugging (correcting errors in your patch). So keep this window in a place where you can find it on your screen. Here is an overview of common messages that you will encounter in the Main Pd Window: [import] tells details of the current version on Pd-extended, in this case 'Pd version 0.14.4 extended.' GEM: describes the details of the Graphics Environment of Multimedia available. libdir_loader: itemizes the various libraries loading into Pd-extended. T his screen grab shows about 20% of the libraries that are loading. Error example: If you were reading the Pd window on a Mac, the Pd window might tell you that you did not have X11 library that is an application to display unix programs, a desirable component of Pd. See how that error message appears in the chapter InstallingOSX "Status: X11 Library not loaded."
58
T here are a few other important features about this main Pd window. At the top of the window, you will find audio level indicators that provide a general idea of the loudness of the sound that you are sending to the soundcard. If this level goes to 100 or higher, you are sending too high a level and you will hear a distorted sound. T he boxes marked "Clip" will also flash red. T o use the audio level meters, check the box that says "peak meters" in the main Pd window. Also found on the top part of the Main Pd Window is a box marked "compute audio", which you can use to turn on and off audio processing. When you open the "T est Audio and MIDI" patch, Pd will automatically turn audio processing on for you. Last is a box marked "DIO". T his stands for Digital In Out errors, and this box should flash red when Pd has difficulties sending data to your sound card. If you click this box, Pd will print a list of times when these DIO errors occurred in the main Pd window. T he "console" box oggles the text displayed in the Pd window. Help Browser Window
T he last thing to point out before getting started with a new patch is the "Help" menu. You can access this resource from the "Help" menu on the top navigation bar. Under this drop-down menu, you can open the official Pd manual, written by Miller S. Puckette in "HT ML" format, which can be viewed in your web browser. You can also open a file "Browser", pictured above, which will list the built-in help patches which come with Pd. </p All of these documents are valuable resources, however many newcomers to Pd can find them confusing. We will cover some of these basics in the "Dataflow", "Audio" and "Patching Strategies" tutorials in this manual, after which you can return to the built-in help files with a bit better understanding.
59
Unlike other software for creating audio or video media, such as Ableton Live, CuBase or Final Cut Pro, where a new file shows you a variety of buttons, menus and timelines, Pd gives you a blank, white space. Within that white space, you can make a synthesizer or video mixer, translate sensor input into the movements of a robot or stream movies to the internet, for example. T he difference between Pd and software like Live is that it doesn't start with any preconceived ideas about how to make your artwork. Where Live provides you with a set of tools suited primarily for the production of loop-driven dance music, Pd acts more like a text editor where anything is possible, so long as you know how to write it. It is this kind of possibility and freedom that attracts many artists to using Pd. T o explore these possibilities, you must understand Pd as being a written language like German or Chinese. As in any language, Pd has a vocabulary (the words used in the language) and a grammar (the way to put these words together so that they make sense). And like learning any language, you first have to learn how to say simple things like "What is your name? " before you can write poetry! So let's start simple. You will notice that once we have opened a new Pd patch, there are a few new menu items to choose from. T he "Edit" menu has all the kinds of functions you would expect from a text editor like Notepad, TextEdit , OpenOffice or Word, such as "Cut", "Paste", "Duplicate", "Select All", etc etc. T here is also a "Put" menu, containing a list of the kinds of things you will be putting in your patch, such as "Object", "Message", "Number", "Symbol", "Comment" and a range of GUI (Graphical User Interface) elements such as "Bang", "T oggle", "Slider", etc.
Linux
From the "File" menu, you can:
60
1. 2. 3. 4. 5. 6.
Create a "New" Pd patch "Open" a Pd patch which is saved on your computer Send a "Message" to the running Pd application Set the search "Path" which Pd uses Change the "Startup" flags which Pd uses "Quit" Pd
From the "Find" menu, you can: 1. "Find last error" which occurred in the program From the "Windows" menu, you can: 1. Change between the different open Pd patches From the "Media" menu, you can: 1. 2. 3. 4. 5. 6. 7. T urn audio "ON" and "OFF" Change between the different available audio drivers Change between the different available MIDI drivers Change the "Audio Settings" Change the "MIDI Settings" "T est Audio and MIDI" View the CPU "Load Meter"
And from the "Help" menu, you can: 1. Read information "About Pd" 2. Open a "Browser" to see some help patches which are included in Pd
Mac OS X
From the "Pd" menu (which should contain the version number as well), you can: 1. Read information "About Pd" 2. Change the following "Preferences": 1. Set the search "Path" which Pd uses 2. Change the "Startup" flags which Pd uses 3. Change the "Audio Settings" 4. Change the "MIDI Settings" 3. Quit" Pd From the "File" menu, you can: 1. 2. 3. 4. Create a "New" Pd patch "Open" a Pd patch which is saved on your computer Send a "Message" to the running Pd application "Quit" Pd
From the "Find" menu, you can: 1. "Find last error" which occurred in the program From the "Media" menu, you can: 1. 2. 3. 4. 5. T urn audio "ON" and "OFF" Change the "Audio Settings" Change the "MIDI Settings" "T est Audio and MIDI" View the CPU "Load Meter
61
1. Change between the different open Pd patches And from the "Help" menu, you can: 1. View the author's documentation as an HT ML file 2. Open a "Browser" to see some help patches which are included in Pd
Use the "Put" menu to place an "Object " in your patch. Click on the patch to drop the object in its place. You will see a box made of a broken blue line, with a flashing cursor inside indicating that you should type something there.
Objects are the "vocabulary" of Pd. T he more names of objects you know, the more complicated things you can do with Pd. If you type the word "print" inside this object and click again outside the box, you will create the [print] object. </p? Return to the "Put" menu, and this time place a "Number " in your patch. Notice that the shape of the number box is different from the shape of the object box.
T o get help associated with a specific object you can right-click it. or use the Control key and click on OS X. T hen just select "help" from the drop-down menu (pictured below). T his is something like the "dictionary entry" for the object, and should define what it does and also show several examples of its use.
62
You should also notice that both the object and the number boxes have small rectangles at the corners. If these are at the top of the object, they are called "inlets", and at the bottom they are called "outlets". When you are working on your patch, your cursor is shaped like a pointing finger. If you put that finger over an outlet, it changes into a black circle which indicates that the outlet is selected. Select the outlet of the the number box, click and drag that black circle until it reaches the inlet at the top of the [print] object. When you have done that, you will see the cursor change from the pointing finger to the black circle again. If let go of the mouse button now, you will make a connection from the outlet of the number box to the inlet of [print]. If you want to remove this connection, place your cursor over the connection until you see a black X and then click. T he connection will turn blue and you can remove it with the Backspace or Delete key on your keyboard.
63
If you click on the patch away from the number box and [print] object and drag, you can draw a box which selects them. You will see they are selected because they will turn blue. Single objects can be selected by clicking once on them.
Once the objects on screen are selected, you can: Move them by dragging them with the mouse Move them in small increments with the Arrow keys Move them in larger increments with the Shift and Arrow keys Delete them with the Backspace or Delete keys Copy them by using the Control and C keys (Apple and C keys on OS X) or the Copy menu item under Edit Cut them by using the Control and X keys (Apple and X keys on OS X) or the Cut menu item under Edit Once Cut or Copied, you can Paste them with the Control and V keys (Apple and V keys on OS X) or the Paste menu item under Edit You can also Duplicate the selected items with the Control and D keys (Apple and D keys on OS X) or the Duplicate menu item under Edit It is recommended to use the duplicate function rather than the paste function, because pasted objects are placed directly on top of the previous object, making it difficult to see them. Duplicated objects are placed to the lower right side of the original, making them easier to find and move.
Pasted or duplicated objects are automatically selected together, so you can grab ahold of them and move them immediately after placing them in the patch.
64
T o make this happen, we need to change out of "Edit Mode" and into "Play Mode". You can do this by clicking on the "Edit Mode" item in the Edit menu, or by using the Control and E keys (Apple and E keys on OS X).
When you enter into "Play Mode", you will see that the pointing finger cursor changes into an arrow cursor. T his change signifies that the mouse will interact differently with the elements within the patch.
65
Now, if you click inside the Number object and drag your mouse up or down you can change the numbers inside of it. Any changed number is sent out through the outlet to any connected objects. Since the object is connected to the inlet of the [print] object the number is printed to the main Pd window.
If you hold the Shift key while using the mouse to change the number, you will scroll through decimal numbers. Using the Alt key plus a mouseclick will toggle the Number box between 0 and 1. You can also change the number by clicking once on the number box, using your keyboard to change the value, and then pressing the Enter key to send the value to the outlet.
66
If you want to make any changes to a patch that is "Play Mode", you have to switch back to "Edit Mode". T o do so, use the "Edit Mode" menu item or the key combination Control (or Apple) and E. Note that you are automatically placed in Edit Mode whenever you add any new item from the "Put" menu to your patch.
You can also send numbers and other information to the message box. Create a message with the text "$ 1 is a beautiful number", and connect it to the [print] object. T hen connect a Number to the inlet of the message, and in Play Mode change the value of the number. You will see in the main Pd window that whatever number you send to this message replaces the $ 1. T his is because $ 1 is a "variable", and will take the value of whatever you send to it. T his is important because different objects need to be sent different messages in order to do things. We will look at more uses for messages and variables later in the Dataflow T utorial.
67
A "symbol" is another way of storing and sending information. Once created, you can use it to display the output of some objects, or you can type directly into it and hit Enter to send the text out. Please note that no spaces will appear in the symbol box when you type into it, since separate words would be considered separate symbols. A "comment" is simply a way of making a note to yourself so that you (or someone else) can understand what you were trying to do later on. You can make as few or as many as you want, and they have no effect on the patch itself.
GUI OBJECTS
Pd has a number of GUI objects you can use to graphically control your patch and to improve its visual appearance. T hese are:
68
1. Bang: this GUI object sends a Message named "Bang" every time it is clicked. "Bang" is a special message, which many Objects interpret as "do an action right now!". Using the Bang GUI object is the same as creating a Message box with the word Bang in it. T he Bang GUI object can also be used to receive and display Bang messages. For more information on this, see the "Counter" chapter in the Dataflow T utorial. 2. Toggle: when clicked, the T oggle sends out one of two values--a zero when it is unchecked and a non-zero number when it is checked. T he non-zero number is 1 by default, however this can be changed in the "Properties". T he T oggle also has an inlet, which can be used to display whether an incoming number is zero or not. 3. Number2: this is almost identical to the Number box, however it has further options in its "Properties", including the ability to save its current value when the patch is saved (by changing the "no init" box to "init"). T he Number2 has an inlet which can be used to display incoming numbers as well. 4. Vslider and Hslider: these are Vertical and Horizontal sliders which send out their current value when moved with the mouse. T he default range of a slider is 0-127 , which can be changed in the "Properties". Both sliders have an inlet which can be used to display incoming numbers within the range of the slider. 5. Vradio and Hradio: these are Vertical and Horizonal "radio buttons", which send out their current value when one of the buttons in them is clicked with the mouse. T he default size of a radio button is 8 buttons, which can be changed in the "Properties". Both types of radio buttons have an inlet each, which can be used to display integer (whole) numbers within the range of the radio buttons. 6. VU: a VU meter displays the average volume level of any audio signal which is connected to it in Decibels. You may switch the value scale on the right side on and off in the "Properties". 7 . Canvas: a canvas is a rectangular area of pixels, whose size and color may be changed under its "Properties". Canvases are useful as backgrounds in your patch to improve its visual appearance and readability. Canvas also can be used as movable GUI objects that gather information about their position (x,y) inside a patcher. Keep in mind that Pd remembers the order in which anything is placed in the patch, so if you want your canvas to be behind certain objects, you must either create it first, or you must Select, Cut and Paste the objects you want in the foreground so that they appear in front of the canvas.
69
In the "canvas" properties menu, you can set the "X range" and "Y range", which represent the length in units of each axis, as well as the visual size of the array in pixels. In the "array" properties menu, you can set the "size" of the Array, which represents its length on the X axis, as well as it's name. Each Array you create must have a unique name, otherwise you won't be able to read from them.
70
Once an array is created and you are in Play Mode, you can click on the line inside and draw curves into the array. Arrays can also be filled with information from datafiles or soundfiles on your computer, as well as with mathematical functions. We'll discuss arrays in more detail in the arrays chapter of the Dataflow T utorial.
Graph
A "graph" is simply a container a graphical container that can hold several arrays. An array needs a graph to be displayed, so whenever you create an array from the menu, you will be asked whether you want to put it into a newly created graph or into an existing graph.
71
12. TROUBLESHOOTING
T here are many small things that might not work straight away. Here are some of the most common issues you might come across. I don't hear any sound! First make sure that the box marked "compute audio" is checked in the main Pd window. T hen check to see that you have selected the right soundcard and drivers for your system, and that the soundcard is connected and operating. On OS X, make sure the check-boxes next to your selected soundcard have been checked in "Audio Settings". On Linux or OS X with Jack, make sure the Jack application is running. On all platforms, check the audio control panel which comes with your Operating System and make sure the proper output is enabled there, and that its playback volume is turned up. Also make sure you are using the correct sampling rate in Pd to match that of your soundcard.
Left: the "compute audio" button in the main Pd window. Right: the "Audio Settings" dialog. There are clicks, glitches or crackles in the test tone! More than likely you have chosen a latency that is too fast for your computer and soundcard to handle. Return to the "Audio Settings" menu and increase the "delay" time there. On Linux, it is also possible that other processes running on your computer, or even a badly configured or slow graphics card, can affect the performance of Pd. Consider running Pd with the "-rt" flag enabled (Linux only!). T his can be done from the command line, or by adding "-rt" to the "startup flags" under the "Startup" menu. On Linux or OS X with Jack, it is possible to set the latency of the Jack application to a greater amount and reduce glitches (called "xruns" in Jack) there as well. The test tone sounds distorted! It is possible that you are playing the sound too loud for your soundcard. Using the controls of your soundcard to reduce the playback volume. Also make sure you are using the correct sampling rate in Pd to match that of your soundcard. I'm not seeing any audio input! Perhaps you did not enable sound input. On OS X, make sure the check-boxes next to your selected soundcard have been checked in "Audio Settings". Also, some cards with an uneven number of in and out channels can have problems in Pd. T ry setting the number of channels the same for the input and output. On all platforms, check the audio control panel which comes with your Operating System and make sure the proper input is enabled there, and that it's recording volume is turned up.
72
The QJackCTL application on Linux allows easy routing of audio signals between applications and the soundcard, or between applications on the same computer. I don't see any MIDI input! Check to see that your MIDI devices or programs are actually sending data, and that your Operating System is correctly sending this data to Pd. On OS X, check to see that you have selected the proper MIDI devices, and that the "Audio MIDI Setup.app" was running before you started Pd. On Linux using the default MIDI drivers, check to see that you selected the proper MIDI device at startup. On Linux with the ALSA-MIDI drivers, make sure you have properly connected your MIDI devices or MIDI programs to Pd. Using Jack with the "QJackctl" application is recommended for this purpose. On Windows, consider using an application like MIDI Ox/MIDI Yoke Junction to see, analyze and manage your MIDI connections.
It is necessary to have the "Audio MIDI Setup" application on OSX running in to connect MIDI hardware and software ports to Pure Data.
73
QJackCTL also allows Linux users to route ALSA MIDI between applications and hardware MIDI ports. I get the message "... couldn't create" when I type an object's name and there's a dashed line around my object! T he reason for this error is that you have asked Pd to create an object which does not exist. T here can be several reasons for this error, and the most common one is spelling. Object names in Pd must be spelled correctly, and they are case sensitive. [Osc~] or [OSC~] will not create in place of [osc~], for example, nor will [osc] without the tilde. Sometimes users accidentally combine the creation argument and the object name, such as [+1] instead of [+ 1]. A creation argument is additional information given to an object and sets the parameters for it. New Pd users also often get confused between Objects and Messages, which are very different types of elements that can be placed in the patch from the "Put" Menu. You can use the "Find last error" function under the "Find" menu to track down which objects did not create. Please see the chapter called "T he Interface" for more details.
I get the message "... couldn't create" when I open a patch and there's a dashed line around my object! If you get this error when opening a patch which you're pretty sure works otherwise (i.e. you've downloaded it from the internet or you created it in a previous Pd session), then it's likely that there is an External Object which was available when the patch was created, but is not available now. You can use the "Find last error" function under the "Find" menu to track down which objects did not create. Pd will preserve the location and connections of an object which fails to create, but it will not function. While most of the Pd Externals are available in the Pd Extended distribution, some are not, or require additional configuration of the "Path" and "Startup" settings. Please see the relevant sections in the "Configuring Pd" chapter. If the External is not available in Pd Extended, you may need to install it yourself. I get the message "error: signal outlet connect to nonsignal inlet (ignored)" when I open a patch.
74
T his error tends to go with the previous error "I get the message '... couldn't create' when I open a patch...". Often this error means that an object has failed to create, usually because it uses an External Object which is not available in the current installation or configuration of Pd. Pd will preserve the location and connections of an object which fails to create, but it will not function. You can use the "Find last error" function under the "Find" menu to track down which objects caused errors. Pd will treat uncreated objects as Dataflow Objects even if they were originally Audio Objects, so this error will follow the previous one. Please see the relevant sections in the "Configuring Pd" chapter for information about setting the "Path" and "Startup" options. If the External is not available in Pd Extended, you may need to install it yourself. I get the message "error: can't connect signal outlet to control inlet" and I cannot connect two objects together! T he output of Audio Objects (those with a tilde ~ in their name) normally cannot be connected to Dataflow Objects (those without a tilde ~ in their name). So Pd will not allow these connections to be made. You might want to look at your patch and make sure that you are using the proper combination of objects. I get the message"error: DSP loop detected (some tilde objects not scheduled)" when I click "Audio ON", and the sound is not working! In an analog electronic system, you can easily connect the output of a mixer back to one of the inputs, turn up the channel and get feedback. T his is because everything in an analog system happens pretty much simultaneously. Computers do not work like this, however, and therefore you cannot ask a Pd patch to compute results based on it's own simultaneous output. Pd works in what are called Blocks (i.e. a group of samples, such as the default number of 64 samples), and all the Samples in each Block must be computed before they are output. So a DSP loop occurs when a patch needs information which is calculated inside the same Block in order to create output. You can use the "Find last error" function under the "Find" menu to track down which objects are causing the DSP loop. T he easiest way around this problem is to create at least a one Block delay between the objects which are connected together. T he objects [send~] and [receive~] are useful for this, because they have a built-in delay of one Block. T o change the number of Samples computer in each Block, you can use the [block~] object.
I get the message "error: stack overflow" when I connect two Dataflow Objects together!
75
A "stack overflow" happens when you have asked Pd to compute a recursive operation, and this operation causes Pd to run out of memory. Often this is the first step before crashing Pd! A common example of a recursive operation which could cause this error is the classic counter, using [float] and [+ 1]. A [float] stores a floating point number on its right inlet, and outputs the result when it receives a bang. If the output of [float] is connected to the input of [+ 1], and the output of [+ 1] is connected to the right-most ("cold") inlet of [float], then a "bang" message sent to the left-most ("hot") [float] will output a number which increases by one every time that message is sent. If, however, the output of [+ 1] is connected to the left-most ("hot") inlet of [float], then sending the message "bang" to the left inlet of [float] will have a different effect. It will ask [float] and [+ 1] to add numbers together as fast as the computer will let them do it. Because Pd will not stop and ask you "are you sure you want to do this? ", this operation will quickly use up all the memory resources which Pd has, and cause a stack overflow. Please see the sections on "Hot and Cold" as well as on "T rigger" in the "Dataflow T utorials" section for more information on how to avoid stack overflows.
I get the error message "connecting stream socket: Network is unreachable" when I start Pd! If you are using the Linux operating system, and see this message when you start Pd, it means your machine cannot make a network connection to itself. You must configure your loopback network device. In many Linux distributions, you can do this by answering "yes" when the system configuration tools ask if the machine will be a "network" (even if it won't).
76
AUDIO TUTORIALS
13. BUILDING A SIMPLE SYNTHESIZER 14. OSCILLATORS 15. FREQUENCY 16. ADDITIVE SYNTHESIS 17. AMPLITUDE MODULATION 18. FREQUENCY MODULATION 19. SQUARE WAVES AND LOGIC 20. GENERATING WAVEFORMS 21. NORMALIZING & DC OFFSET 22. ANTIALIASING 23. FILTERS 24. THE ENVELOPE GENERATOR 25. THE AMPLIFIER 26. CONTROLLING THE SYNTHESIZER 27. BUILDING A 16-STEP SEQUENCER 28. A FOUR STAGE FILTERED ADDITIVE SYNTHESIZER
77
The MiniMoog is one of the most famous analog synthesizers in the world. We'll take a shot at reproducing some of its basic features in this tutorial. Source: http://en.wikipedia.org/wiki/Image:Minimoog.JPG A synthesizer is one of the most fundamental instruments in electronic music. Its essential function is to generate a musical tone when it receives a note from either a keyboard or a sequencer. In analog electronic music, a synthesizer is built from several modules, or parts: 1. T he Oscillators, which generate the tones. 2. T he LFO (Low Frequency Oscillator ), which usually modulates either the frequency or gain of the Oscillator(s), or the frequency of the Filter. 3. T he Filter , which emphasizes and/or removes certain frequencies. 4. T he Envelope Generator , which controls changes in frequency or gain over the duration of the note. 5. T he Amplifier , which controls the gain of the synthesizer. Synthesizers can be capable of playing one note at a time (monophonic), or several notes at a time, allowing for chords (polyphonic). T he number of simultaneous notes that a synthesizer can play are called its voices. Originally, the word "Voltage" was used (i.e. Voltage Controlled Oscillator, Voltage Controlled Filter or Voltage Controlled Amplifier) because in an analog synthesizer each of these modules was controlled by electrical voltage from the keyboard, sequencer or another module. Because we're working in the digital domain, this voltage is replaced by data in the form of numbers, messages and streams of digital audio.
78
For this tutorial, we will construct a monophonic synthesizer in Pd based roughly on the design of the famous MiniMoog analog synthesizer (but much simpler!), and with a sound which is useful for generating basslines. It will take input from the computer keyboard, a MIDI keyboard or the sequencer we will build in the the next tutorial. T his synthesizer will be based on two Oscillators to produce the note, another oscillator (the Low Frequency Oscillator ) which will change the gain of the sound, a Filter which will only allow only certain frequencies of the sound to pass, an Envelope Generator which will control the "shape" of the gain of the note, and a final Amplifier which will be controlled by the Envelope Generator and a volume setting on the screen.
DOWNLOADS
T he patches used in this tutorial can be downloaded from : http://en.flossmanuals.net/floss/pub/PureData/SimpleSynthesizer/simple_synth.zip
79
14. OSCILLATORS
Oscillators are the basic signal generators in electronic music. By combining, filtering or modulating them, almost any imaginable sound can be created. In Pure Data, audio signals are represented by a stream of numbers between the values of -1 and 1. So the waveform of each oscillator has been programmed to send out values within this range. T he name of each oscillator refers to its waveform, which is the shape of one period (or one Hertz) of that oscillator. Different waveforms make different sounds.
T he Square Wave Oscillator has a "hollow" sound, and contains only odd harmonics and is useful for synthesizing wind instrument as well as "heavy" bass sounds. Its shape alternates instantly between 0 and 1. Since there is no square wave object in Pd, we create a square wave by checking to see if the output of the Sawtooth Wave object [phasor~] is greater than 0.5. If it is, the Expression object [expr~] outputs a 1, otherwise it outputs a zero. T his creates the "high" (1) and "low" (0) states of the square wave, as you can see in the graph.
OTHER WAVEFORMS
Other possible waveforms include a triangle wave as well as many other mathematical shapes.
81
82
15. FREQUENCY
In order to to create sound, each oscillator object takes a numerical input which represents a frequency in Hertz. T his number determines the number of times the oscillator will make its waveform during one second. By using a creation argument (a default setting typed into the object box when the object is first created), we can set the initial frequency of an oscillator. And by using an [hslider] (Horizontal Slider), a Number or a Message, we can send numerical messages to change the frequency of the oscillator.
83
For many musical applications, the MIDI scale is a useful way of controlling the frequency of an oscillator. One can imagine the MIDI scale as a piano keyboard with 128 keys on it, and each key has been marked with a frequency in Hertz which represents that musical note. Below is a part of the table which makes up the MIDI scale. T hree octaves are shown. T he most important thing to notice is that a note which is one octave higher than another note (for example, the three A notes of 110 Hz, 220 Hz and 440 Hz) has a frequency which is twice that of the lower note.
M IDI Note C Db D Eb E F Gb G Ab A Bb B 36 37 38 39 40 41 42 43 44 45 46 47 Frequency M IDI Note 48 49 50 51 52 53 54 55 56 57 58 59 Frequency 130.8127826503 138.5913154884 146.8323839587 155.5634918610 164.8137784564 174.6141157165 184.9972113558 195.9977179909 207.6523487900 220.0000000000 233.0818807590 246.9416506281 M IDI Note 60 61 62 63 64 65 66 67 68 69 70 71 Frequency 261.6255653006 277.1826309769 293.6647679174 311.1269837221 329.6275569129 349.2282314330 369.9944227116 391.9954359817 415.3046975799 440.0000000000 466.1637615181 493.8833012561
65.4063913251 69.2956577442 73.4161919794 77.7817459305 82.4068892282 87.3070578583 92.4986056779 97.9988589954 103.8261743950 110.0000000000 116.5409403795 123.4708253140
For the complete table, see http://www.phys.unsw.edu.au/jw/notes.html T he object in Pd which turns a MIDI note into a frequency in Hertz is called [mtof], or MIDI to Frequency. When the MIDI note "69" is sent to it, for example, it will output the number "440". Looking at our examples, you can see that each slider has a range of 0-127 , and this is converted by an [mtof] object to a frequency which tells the oscillator what to do. Of course, you aren't limited to the notes that Western music schools teach you are correct. So-called "microtonal" notes are possible as well. If you hold down the Shift key while using the mouse to change a Number, decimal numbers are possible, so that you can tell an [osc~] to play MIDI note number 7 6.89, for example.
84
Note that the two waveforms are sent to an audio multiplication [*~] object, which halves (multiplies by 0.5) the combined signal to reduce the total range of values sent to the sound card. At full volume, each oscillator goes from either 0 or -1 to 1 many times a second. Because Pd handles numeric values, not waves, you can add any number of signals. If, however, the combined value of these signals exceeds the -1 to 1 range when it reaches the digital-to-analog converter [dac~] object (that is, the line out to the sound card), clipping and distortion occur. Any value outside of the accepted range is treated as a -1 or a 1. You can see how two combined signals can go outside this range on the graph in the patch below.
85
If you combine two waveforms whose frequencies are very close to each other, the combined values of the two waves interfere with each other, causing a periodic modulation of the sound. T he frequency of this modulation is equal to the difference of the two original frequencies, in Hz. T his is known as a "beating frequency," or "phase interference." T he sound of two oscillators slightly de-tuned from each other is often used for different kinds of electronic music sounds, such as a "fat" bass effect.
86
SIMPLE AM SYNTHESIS
Classical AM Synthesis is created by using one oscillator to modulate the gain of another oscillator. Because we are changing the gain of the carrier oscillator from 0 (no gain) to 1 (full gain), the modulating oscillator must output a signal which changes between 0 and 1. T his is most often done at audio frequency rates from 20 Hz and up. In this case, the sawtooth waveform of a [phasor~] is used as the modulator, and the sine waveform of an [osc~] is the carrier.
TREMOLO
Tremolo is a form of Amplitude Modulation where the gain of an audio signal is changed at a very slow rate, often at a frequency below the range of hearing (approximately 20 Hz). T his effect is commonly used to alter the sound of organs or electric guitar. Since a sine wave is often used for a smooth-sounding tremolo effect, in this patch we have taken the output of an [osc~], which normally moves between -1 and 1, and scaled it so that it's output is now from 0 to 1. T his is known as adding a DC Offset to the signal. For more discussion on this, please see the chapter on DC Offset.
87
RING MODULATION
You can also modulate one audio signal with another audio signal (i.e. a signal which has both positive and negative values). T his effect is called Ring Modulation. If you have a microphone connected to your computer, try the following patch. T he sound of your voice will enter Pd through the Analog to Digital Converter [adc~] object (the line in from the soundcard), and be modulated by the sine wave of a [phasor~] object. Notice that there is no sound when only one audio signal is present (i.e. when you are not speaking). T his is because one audio signal multiplied by zero (no audio signal) will always be zero. And the louder the input signal is, the louder the output will be.
88
T he Ring Modulation effect was often used in Science Fiction movies to create alien voices. You may want to use headphones when running a microphone into Pd to prevent feedback (the output of the speakers going back into the microphone and making a howling sound).
89
90
When the amount of modulation is very small (only a few Hz), then a vibrato, or "vibration" of the carrier frequency will be heard. When the amount of modulation is greater, then a greater "glissando", or sweeping of the carrier frequency will be heard. T he frequency of the modulator will determine how quickly these changes heard in the frequency of the carrier will happen. Even more complex sounds can be created by using further modulators to make changes in the frequency of the main modulator oscillator.
91
It is also possible to modulate the Pulse Width of the Square Wave with an LFO, which creates a unique sound. Instead of using a Number box, the output of a Sine Wave Oscillator is sent to an Absolute audio [abs~] object, which converts any negative values from the [osc~] into positive ones, and this stream of numbers is sent to the second inlet of the [expr~] object.
92
In short, this means that the output is "1" only when both inputs are also "1", otherwise the output is "0". In Pd, this is represented by the && operation used in the Expression [expr] or Audio Expression [expr~] objects, i.e. [expr~ $ v1 && $ v2]. T he OR operation works like this:
0 0 1 1 OR OR OR OR 0 1 0 1 = = = = 0 1 1 1
In short, this means that the output is "1" only when both inputs are also "0", otherwise the output is "0". In Pd, this is represented by the || operation used in the Expression [expr] or Audio Expression [expr~] objects, i.e. [expr~ $ v1 || $ v2]. And the EQUAL operation works like this:
0 0 1 1 EQ UAL EQ UAL EQ UAL EQ UAL 0 1 0 1 = = = = 1 0 0 1
In short, this means that the output is "1" only when both inputs are the same, otherwise the output is "0". In Pd, this is represented by the
= operation used in the Expression [expr] or Audio Expression [expr~] objects, i.e. [expr~ $v1 = $ v2].
93
In the following patch, different logic operations are used to make patterns from two Square Wave Oscillators, which are then compared with a final Square Wave Low Frequency Oscillator. What you will hear is a pattern of Square Waves which are switched on and off by each other. T he final LFO makes a recognizable rhythm in the sound.
T ry replacing any of the && (AND) or || (OR) operations in the [expr~] objects with an == (EQUAL) operation to hear the difference it makes in the sound. Or add further Logic operations to the output of the LFO to make more complex rhythmic patterns. You can also experiment with changing the Pulse Width as described in the previous patches.
94
INTRODUCTION
Besides using the built-in oscillators such as [osc~] and [phasor~], or using audio mathematics on the output of [phasor~] to create new waveforms, it is possible to generate the waveforms of a saw, triangle or square wave out of a combination of sine waves. When written to an array, these waveforms can be played back as an oscillator. T his method has a few advantages over using [phasor~] to create different waveforms. T he first advantage is that the resulting waveforms will be bandlimited. T his means the number of harmonics they produce will be limited, and will cause less aliasing noise. For more details on aliasing, see the Antialiasing chapter of this FLOSS Manual. T he second advantage is that these waveforms much more closely resemble the kinds of waveforms generated by analog electronics. Real world analog waveforms do not have the completely sharp angles of their idealized, digital counterparts due to the "rippling" effect inherent in the resonance of their circuitry. One could subjectively say that these waveforms are more "warm" and "analog-sounding" than the ones produced by [phasor~]. T he basic principle we will use here comes from the Fourier theorem. T his theorem states that any complex waveform can be broken down into a series of simpler sine waves which, when added back together, can reproduce that waveform. T he more sine waves used to represent the complex wave, the more accurate the reproduction will be. While a full explanation of the math behind this is outside the scope of this manual, we will cover the use of this theorem to create three basic wave forms, the sawtooth, the triangle and the square.
USING SINESUM
In Pd, we can write waveforms to a table using an internal message. An internal message is a message box which, when clicked, sends the message inside to the Pd application itself. An example would be the messages we can use to turn audio processing on and off in Pd:
So to create and load a table with a waveform, we must first create an array from the Put menu. T hen we give it the name "waveform" in the properties:
95
After that, we create a message, and type the following in it (using the Return key after the semicolon to start a new line):
; waveform sinesum 2051 1
T he semicolon indicates that the message is an internal message, and "waveform" indicates that we are sending information to the array named "waveform". T he word "sinesum" tells the array that we will be sending it a series of harmonics to graph. T he number "2051" tells the array that we want to graph those harmonics out on 2051 units on the X range, so the array will be resized from 100 (its default size) to 2051. Finally, the number "1" indicates that we want to write a single sine wave with a peak amplitude of 1 to the array. When we click the message, we see a pure sine wave graphed to the array:
SAWTOOTH WAVE
T he way that sinesum works is that you send it a list of the amplitudes of the harmonics you wish to graph. A sawtooth wave is the simplest, as it uses the formula 1/h (where "h" indicates the number of the harmonic) to compute the amplitudes. T herefore, the amplitude of the first harmonic is 1/1 = 1, the second is 1/2 = 0.5, the third is 1/3 = 0.33333, etc etc. Here is a message to compute a very rudimentary sawtooth wave using only four harmonics:
; waveform1 sinesum 1 0.5 0.33 0.25
96
Because the graph is the product of several sine waves being added up, the waveform can go outside the normal -1 to 1 bounds of an audio signal. T he message:
; waveform1 normalize 1
will adjust the range of the signal to fit within the bounds of -1 and 1. Below, we have two examples of sawtooth waves, both normalized to the range of -1 to 1. As can be seen, the more harmonics used to calculate the waveform, the closer it gets to its idealized mathematical form:
97
T he [tabread4~] object can take the name of the array it will read as a creation argument , or you can use a message such as the following to change the array it reads from:
set waveform 2
TRIANGLE WAVE
A triangle wave can also be quite simply generated with only a few harmonics. T he shape of a triangle wave is made using only the odd harmonics (1, 3, 5, 7 , etc). Zeros are used for the amplitude of the even harmonics (2, 4, 6, 8, etc). T hen 1 is divided by the square of each of those harmonics (i.e. 1/h2 ). Finally, the amplitude of every other harmonic is multiplied by -1 (i.e. the amplitudes of the third, seventh, ninth, etc harmonics). T he triangle wave takes shape very quickly with only four harmonics, and as more harmonics are added, the points of the triangle become sharper.
SQUARE WAVE
98
A square wave takes a few more added harmonics to get close to its ideal mathematical shape. T his waveform is created also using only the odd-numbered harmonics (1, 3, 5, 9...), and zero is also used for the amplitude of the even harmonics (2, 4, 6, 8...). T hen 1 is divided by the number of the harmonic to get its amplitude (i.e. 1/h). As illustrated below, a square wave made up of only four harmonics isn't very square, but when more harmonics are added its shape becomes very clear.
99
An extreme example of DC offset: the waveform is only in the positive domain. And to normalize an audio signal means to adjust its gain to peak at the maximum the sound card allows before clipping (i.e. -1 and 1). T his is done to maximize the dynamic range of the signal when it is played back. For example, by default the [phasor~] object ramps from 0 to 1. T he middle point (i.e. the DC Offset) is 0.5, and its dynamic range (the difference between the minimum and maximum values) is half the biggest possible. In order to get a waveform which uses the full dynamic range of the soundcard without any DC offset, we need to multiply its signal by two in order to double the dynamic range. T his is the normalizing part. Since now the DC Offset is 1,T hen we remove the DC offset by subtracting 1 from every sample value, resulting in a waveform which crosses zero at the midpoint of its ramp from -1 to 1.
100
Likewise, the same can be done with the square waves we created by comparing the output of [phasor~] with 0.5 with a simple logic operation. T he resulting 0 or 1 can be normalized to -1 and 1 with the same audio math.
Since we are using the [expr~] object to create a mathematical expression for the creation of the square wave anyway, we can include the normalizing and dc offset correction directly into that expression like this:
101
Here, we revisit the sawtooth wave generator, made from inverting the ramp of [phasor~], comparing it with the original ramp and deriving the minimum values. T he sawtooth waveform which results has a DC offset of 0.25 and a gain from 0 to 0.5. By subtracting the 0.25 offset and multiplying by 4, the waveform is DC offset corrected and normalized.
T he same process can be reduced to a single [expr~] object which compares the ramps, performs the DC offset correction and normalizes the resulting waveform.
102
A DC Offset is a constant value, this means it has a frequency of 0Hz, because it never changes. A high pass filter can be used to remove the DC offset of a signal or combination of signals by removing frequencies below its cutoff frequency. In this case, the [hip~] object is set to attenuate frequencies at or below 1 Hz, resulting in a waveform centered on zero. It will not, however, normalize the signal afterward, nor will it prevent clipping (values greater than -1 or 1 which cannot be reproduced by the soundcard).
Many Pd programmers use a [hip~ 1] object just before each channel of the [dac~] to eliminate any accidental DC offset which may have accumulated in the audio signals of their patch. Finally, a limiter can be used to automatically reduce the overall gain whenever the signal passing through it exceeds a certain level. In a socalled "lookahead limiter", the audio signal is delayed for a certain amount of time while the limiter decides if the signal needs to be reduced and by how much. T he [limiter~] object in Pd is useful for this purpose, while the [z~] object delays the signal being measured long enough for the [limiter~] to output the amplification factor needed to keep the audio signal within bounds. Please check the help file for [limiter~] for a wide range of uses for this object.
103
104
22. ANTIALIASING
OUTLINE
T his chapter describes different techniques for avoiding aliasing artifacts in digital oscillators in Pd, including the combination of oversampling plus low pass filteringas well as the use of bandlimited oscillators.
105
One technique of antialiasing filtering involves applying a low pass filter . Because no filter is perfect, every filter has a slope from the cutoff frequency, which is the frequency at which it starts to affect the sound, to the point where the frequencies are completely removed. In order to remove the high frequency harmonics which cause aliasing, we would need a filter which has sufficient attenuation at those frequencies to reduce them below the level of hearing. In order to create such a filter, we need to increase the sampling rate to give us the frequency range required. T his process is called oversampling , and in Pd this can be done with the object [block~]. When given the creation arguments "1024 1 16", [block~] will oversample the audio which comes into a subpatch by a factor of 16 (i.e. up to 7 05.6 KHz if the current sampling rate is 44.1 KHz), in chunks of 1024 samples at a time. T he signal can then be digitally filtered, removing the higher harmonics which could cause aliasing, and when it leaves the subpatch it will be downsampled back to the original sampling rate.
The antialiasing filter shown above is taken from the example J07.oversampling.pd in the 03.audio.examples folder found in the Pd Documentation Browser in the application. Because this is a very CPU intensive process, it is wise to only include the oscillators you wish to antialias in this subpatch, and to control them via the [inlet]s of the subpatch!
BANDLIMITED WAVEFORMS
106
Another solution to this problem is to use waveforms which produce fewer harmonics for the oscillators. T hese waveforms are said to be bandlimited, because the number of harmonics in them have been limited by the shape of the wave. Bandlimited waveforms are usually the product of a combination of sine waveforms which add together to produce a certain shape. An example of this is shown below.
is an internal message which tells Pd to fill up 2051 places of the table "saw 1" with the product of a series of nine sinewaves. You can see the table, "saw 1" on the left, with the bandlimited waveform, and it's properties are shown below. T o play the table back, the ramp of a [phasor~] is multiplied by 2048 and is sent to a [tabread4~] object, which uses the incoming audio as the index to play back table "saw 1". T he audio which comes out must be scaled slightly because, as can be seen from the table, the waveform has extremes outside the normal -1 to 1 bounds. It should be noted that no technique can completely eliminate aliasing noise, as eventually any oscillator which is not a pure sinewave will eventually produce harmonics above the Nyquist frequency when its frequency is increased. T he above oscillator is no exception, and sounds best when used as a bass synthesizer. For more information on bandlimited oscillators, see the Generating Waveforms chapter in this FLOSS Manual.
107
23. FILTERS
A filter works by allowing some frequencies through, while reducing or eliminating others. T here are three different kinds of basic filters to work with in Pd: the Low Pass Filter, the High Pass Filter and the Band Pass Filter, as well as a Voltage Controlled Filter which can be controlled using some of the LFO techniques we have already looked at.
108
109
T he three filters we've seen so far all take numbers to control their Cutoff or Center Frequencies as well as their Resonance (in the case of [bp~]. However, there are times when you might want to control the frequency of a filter with an audio signal. A typical situation is when a filter is swept by an LFO.
110
111
An additional parameter which comes from the MIDI world is called Velocity, and it refers to how hard the key of the keyboard has been pressed. In our synthesizer, Velocity will refer to the volume of the note at its loudest point, i.e the peak of the Attack.
112
T he simplest Envelope Generator can be made using the object [line]. T his object takes two numbers, a target and a time (in milliseconds), and interpolates numbers to that target in the time given. If it is sent a single number, the time of the ramp is assumed to be zero, and [line] "jumps" to that value. It remembers that last value that it reached, so the next pair of numbers will start a new ramp from the current value. If a new pair of numbers is sent to [line] while it is still making a ramp, it will immediately stop that ramp and start the new one.
T o make a simple up/down, or Attack/Decay envelope, we need to send two different messages to [line]. T he first will tell it to go to "1" in a certain amount of time, the second will tell it to go back to "0" in a certain amount of time. T hese two messages can be triggered with a single "bang" message, as long as we delay the triggering of the second message long enough for the first ramp to finish, using the [delay] object.
113
Ramp up to "10" in 1000ms, then jump to "0" in 0ms after waiting 1000ms (from the start of the ramp), and finally ramp back up to "1" in 1000ms after waiting 3000ms (from start of the ramp).
Because it accepts more complex messages, [vline~] is useful for the traditional Attack/Decay/Sustain/Release envelope. Also, [vline~] is an audio object rather than a numeric object, which means it is more suitable for audio multiplication, as we will see in the next section.
For an envelope with an arbitrary curve, a table is the most useful way to go. First we must create a table, by using the Put menu to place and Array in the patch. When we do that, we will see two Properties dialogs appear. In one, we name the Array "envelope" and set a length of 100 units. In the second we can change the graphical appearance and the range of the X and Y axes. In this case, set the X range to "0 to 99", and the Y range to "1 to 0". T he size can be anything that is convenient, and is measured in pixels. You can get these Properties dialogs back by Right-clicking or CT L+clicking on the Array. T hese dialogs appear under the screenshot below. T o read a table, we can use the object [tabread]. T he [tabread] object takes a creation argument of the name of the table it is supposed to read. In order to draw inside the table, you should click on the line and drag with the mouse. A value sent to the inlet of [tabread] represents a point on the X axis, and the output is the corresponding value on the Y axis.
115
If we want to read a table continuously from start to finish, we can use [line] to send a continuous stream of numbers to [tabread], starting with the first position on the X axis of the table ("0"), and ending with the last position ("99"). Remember that [line] takes a pair of numbers, the target ("99", the end of the table) and the time it takes to get there (4000 milliseconds, or 4 seconds). When we want to start over from the beginning of the table, we send a single number, "0", and the [line] object jumps back to it. In the example below, [tabread] gets values between 0-1 from the table "pitch_envelope". We multiply these numbers by 127 with a [*] (Multiplication) object, to get a MIDI note value between 0-127 . After that, we use a [mtof] (MIDI to Frequency) object to convert the MIDI notes into a frequency in Hertz. T he frequency is sent to a sine wave oscillator [osc~] object, which sends audio to the [dac~] (Digital to Analog Converter), Pd's connection to the soundcard.
116
USING A SLIDER
In the two examples below, an audio signal from the Sine Wave Oscillator [osc~] is being changed manually, via a slider, in the same way as the Volume knob on your home stereo might work. In the first example, the numbers from the slider, which go from 0-127 , are divided by 127 with a Division [/] object, to get them within the range of 0-1. T hese numbers are sent directly to the right inlet of the Audio Multiplication [*~] object, so that every audio sample coming from the [osc~] is multiplied by a number between 0-1. T his will reduce the volume of each sample. "0" means no sound, "1" means full volume. However, these changes in volume will have clicks in them, as each number from the slider is sent to the [*~].
117
If you use [line] to make your envelope, you can make an audio signal by using the audio object [line~] instead.
And to read a table and get an audio signal out, the [tabread4~] object is useful. Note that [tabread4~] responds better when controlled with an audio signal as well, so [line~] is used instead of [line].
118
119
120
121
122
A COUNTER
Before we can build the note-storing section of the Sequencer, however, we have to learn a little bit about dataflow in Pd in order to make a counter. T his counter will count from 0 to 15, and each number it sends out will trigger one of the steps in a 16-Step Sequencer. T he patch below shows a counter, built with basic Pd objects.
[metro] is used to send the message "bang" every so many milliseconds. T his interval is set by a Number sent to the right inlet. T he [metro] is turned on and off by sending either a "1" or a "0" to the left inlet. We use the [toggle] object to send these messages.
123
So in our counter, there is an object called [float], which stores and outputs a Floating Point Number . Floating Point Number is another name for a number with a decimal place, usually called simply a "float". T he opposite of a "float" is an Integer, or "int", which has no decimal place. All numbers in Pd are assumed to be floats. When [float] receives a "bang" to its left ("hot") inlet, it outputs the float which is stored on it's right ("cold") inlet. When this [float] outputs a number, it is also sent to the inlet of a [+ 1] object, where 1 is added to that number and sent back to the "cold" inlet of [float] to wait for the next "bang". So, every time this construction receives a "bang", the number it will output will be 1 more than before. For more information on "hot" and "cold", as well as other descriptions of how to get used to how dataflow works in Pd, please see the Dataflow T utorials in this FLOSS Manual. T he numbers sent from our counter will increase until the number 167 7 7 216. T hat means your Sequencer will run for quite a few days. In order to keep them within the bounds of our 16-Step Sequencer, we need a way to "wrap" these numbers around so that they start over when the counter reaches 16, and every other division of 16 that comes later on. [mod] is the object which does this. T echnically, [mod] means "modulo", and it outputs the remainder of a division operation using the number in the creation argument. T hus "16" becomes "0", "17 " becomes "1", "18" becomes "2" and so on. If you want to make an truely indefinite from-to-counter connect the [+ 1] output to the modulo and modulo's output to the cold inlet of the [float] object.
In the next patch, we see how to store and recall a number from an [hslider] using the [float] object as well. Here, [float] has been abbreviated to the commonly used [f]. At the bottom of our counter construction from the previous example, we have replace the Number with an [hradio] array of buttons, so that we can see which step of our Sequencer we are at. (Right or Control+Click on the [hradio] to see its properties, and type "16" in the "number" field to set the size.) Below the counter we have the object [select]. T his object checks the input on its left inlet against either the input on the right inlet, or in this case against a series of creation arguments. When the input on the left matches one of the creation arguments, then the message "bang" comes out of the corresponding outlet. T hus, an input of "0" will send a "bang" out the first outlet, an input of "1" sends a"bang" out the second outlet, etc etc. In this way, we have a separate "bang" for each step in the Sequencer. For each step in the Sequencer, we will use a [f] object to store a MIDI Note send from a [vslider]. T he range of the [vslider] is 0-127 , and the number it outputs is sent to the "cold" inlet of [f], to wait for a "bang" to come to the "hot" inlet. When that "bang" comes, the MIDI Note is sent out. You can change the value of the [vslider] with the mouse at any time, and the MIDI note will only be sent at step 0 of the sequence.
125
In this version, no Envelope Generator is used, so the volume of the audio going to the soundcard remains constant. T his leads to noticeable clicks when the frequencies of the MIDI Notes change. An Envelope Generator based on [line~], [vline~] or [tabread4~] could be inserted between the output of [bp~] and the [dac~] if desired.
126
127
What [trigger] does depends entirely on its creation arguments. When it receives any input, [trigger] sends messages to its output in a right to left order, based on these creation arguments. In this case, our [trigger] has the creation arguments "float", "float" and "bang". So on any input from [key], which sends a Floating Point Number (a "float"), [trigger] will first send the message "bang" out its right-most outlet, which will go the AMP ST AGE. T he it will send that float which came in to the center outlet, which will go to the FILT ER ST AGE. And finally it will send that float to the left-most outlet, which will go the OSCILLAT OR ST AGE. [trigger] is often abbreviated as [t], so the [trigger] in this example could also be typed as [t f f b]. For more information on [trigger], please see the Dataflow T utorials in this FLOSS Manual.
128
synthesizer. It uses a [vline~] object as a complex Envelope Generator. Every time a key on the keyboard is pressed, the [trigger] object in the INPUT ST AGE sends the message "bang" to the AMP ST AGE. Here it triggers the message "1 150, 0.9 150 150, 0 1000 500", which is sent to the [vline~] and tells [vline~] to make this audio ramp. T he exact instructions the message tells [vline~] are as follows: First ramp to 1 in 150ms T hen ramp down to 0.9 in 150ms after a delay of 150ms from the start of the complex ramp. After that, ramp down to 0 in 1000ms after a delay of 500ms from the start of the complex ramp T his translates to: Attack: 150ms Decay: 150ms to a value of 0.9 Sustain: 200ms (the 500ms of the last ramp minus the 300ms of the first two ramps equals a "rest period" of 200ms) Release: 1000ms With these instructions, [vline~] creates an audio ramp which smoothly controls the overall volume of the audio coming from the FILT ER SECT ION via an Audio Multiplication [*~] object.
SUBPATCHES
Now that we have an instrument that is separated into four distinct stages, we may want to make the screen a bit easier to look at by putting each stage inside its own Subpatch. A Subpatch is simply a visual container which objects can be placed in to get them out of the way. T o create a Subpatch in a Pd patch, simply create an object named [pd mysubpatch], where "mysubpatch" can be any name you choose. A new empty patch window opens up and you can cut or copy and paste the objects you want to place in the Subpatch inside this new window. When you close the window, the objects will be inside this Subpatch, still functioning as normal. T o get information in and out of a Subpatch, you can use the objects [inlet] and [outlet] for numbers and other messages, and the objects [inlet~] and [outlet~] for audio. T his will create inlets and outlets in the Subpatch in the main patch you are working in, that you can connect as normal. You can give a creation argument to each inlet or outlet, which could be a reminder of what is supposed to come in our out of that inlet or outlet ("midi_note", "start_trigger", "audio_from_filter", etc etc). Here is our Four Stage Subtractive Filtered Synthesizer, with each stage inside it's own Subpatch.
129
130
131
DATAFLOW TUTORIALS
29. DATAFLOW TUTORIALS 30. BUILDING A SIMPLE SEQUENCER: A STEP BY STEP GUIDE 31. MESSAGES 32. MATH 33. LISTS 34. ORDER OF OPERATIONS 35. WIRELESS CONNECTIONS 36. SUBPATCHES 37. ABSTRACTIONS 38. DOLLAR SIGN ARGUMENTS 39. GRAPH ON PARENT 40. ARRAYS, GRAPHS AND TABLES
132
133
134
3. Set up a counter a. Put in a [float] (this can be written as [float] or [f]). T his stores the number on its right inlet, and outputs the result when it receives a bang. b. Connect the outlet of the [metro] to the inlet of the [float]. c. Put in an addition arithmetic object with a creation argument of 1 [+ 1]. T his will set up the counting of the object. d. Connect the outlet of the [float] to the first inlet of the [+ 1] object and the outlet of the [+ 1] object to the right inlet of the [float]. T his will store the number in the [float]'s right inlet and the result will be sent when the [float] receives a bang. * Be aware of stack overflow which happens when you connect the output of the [+ 1] object to the first inlet of the [float] T his creates a feedback loop by sending the creation argument in a neverending circle between the [+ 1] object and the [float] (if you let this go it could crash your system!). d. Put in a [number box] and connect the [float]'s output to the number box's inlet. T his enables you to see what is happening to your creation argument. * T he [number box] is being used in this example as a visual aid and enables you to observe what is happening. e. Put a [mod] object with a creation argument which will specify the number of steps in your sequencer into the patch. T his will define how many steps the sequencer has and distribute the input accordingly. For example, if you put a [mod] with a creation argument of 4, you will build a 4 step sequencer. f. Put a [horizontal radio] object into the patch. T his acts as a visual aid and enables you to see the individual steps of the sequencer as they happen.
135
4. Set up a distribution channel a. Put a [select] object with creation arguments numbering the sequencer's steps. T his distributes the bangs to the corresponding outlets. For example, put in an object of [select 0 1 2 3] for a 4 step sequencer (start with 0 because mod objects output 0 as well). * Every time you create a [select] object, the number of outlets will be equal to the number of creation arguments with an extra outlet in order to distribute the surplus signals. b. Put the number of [float] objects for each step of the sequencer into the patch. c. Connect the outlets from the [select] object to the inlets of the corresponding [float] objects. d. Put a vertical slider into the patch for each step of the sequencer. T hese enable you to adjust the pitch of the individual steps in the sequence. For example, put in four vertical sliders for a four step sequencer. e. Connect the outlet of the vertical sliders to the second (right) inlets of the [float] objects. T his enables you to change the pitch of each step and hear it only when the counter hits that note.
136
5. Convert a midi number to frequency a. Put a [mtof] (midi to frequency) object into the patch. T his converts the incoming midi numbers to frequency. b. Connect the outlets of the [float] objects to the inlet of the [mtof] object. 6. Send the frequency to audio a. Put an [osc~] (oscillator) object with a creation argument into the patch. T his outputs audio - ie. a pure sine wave. * Refer to the Oscillator chapter in Audio T utorials for more. b. Connect the outlet of the [mtof] object to the inlet of the [osc~] object. 7. Send the audio to a soundcard a. Put a [dac~] object into the patch. A [dac~] object is a digital to analogue converter and creates a line out to the sound card. b. Connect the outlet of the [osc~] object to the inlet of the [dac~] object.
137
CONGRAT ULAT IONS! You have now created a functioning sequencer in Pure Data. T his is how the sequencer should look:
138
* We have chosen to use the above elements to set up a sequencer however there are many ways to set one up, including using a table. We're sure you will discover these as you delve deeper into the world of Pure Data.
139
31. MESSAGES
Pd's objects intercommunicate using messages, which typically flow from an outlet of one object to an inlet of another through black lines called wires, or patch cords. T hese messages are usually a request to do something, like open a file, compute a sum, or store some data. Apart from audio signals all other data in Pd are messages.
ANATOMY OF A MESSAGE
Messages are made up of one or more pieces of data called atoms. T here are several atom types that may be used in Pd, but the two most important ones are: numeric - a number such as "3," "4.5," or "5.55556e+06" symbolic - typically, a word that cannot be interpreted as a number and that contains no white space, such as "open," "pitch," "file001," "reset" Messages in Pd begin with a symbolic atom, called the selector , which may be followed by zero or more atoms, referred to as the elements of the message (all separated by white-space). Aside from two convenient exceptions covered below, Pd messages follow adhere to the following form: selector element1 element2 etc... T he selector of the message tells the object what to do-- that is, when a message arrives at one of its inlets, the object checks the selector and chooses an appropriate action, or method, in response. T he particular action depends on what the object was designed to do. For example, an object may accept messages consisting of the selector "set" followed by one numeric atom, like "set 12," to store the number 12. Another object might accept a message with the selector "clear" (with no elements) as a way to "forget" the current data stored in the object. (Note: you can usually find out which messages an object accepts by right-clicking it and choosing "Help.") All Pd objects will send an error to the console if you attempt to send a message that the object doesn't understand. For example, the [change] object accepts "float" and "set" messages, but if you try to send the message "elvis is king," an error will let you know that the selector "elvis" isn't understood: "error: change: no method for 'elvis'." For secondary inlets, the error message will give you a hint as to the correct selector, like: "error: inlet: expected 'float' but got 'elvis'."
140
float message - the word "float" with one element that is a number, like "float -5." Also known as floats (floating point numbers). symbol message - the word "symbol" followed by a word. E.g., "symbol foo." list - the word "list" followed by groups of numbers and/or symbols and/or pointers. bang - the single word "bang." Often used simply to trigger an object to perform an action. pointer - references to data stored in graphical data structures. T he standard messages shown above make it easy to perform common tasks in Pd-- for example, if you know that a certain object performs simple arithmetic, you can guess that it will accept float messages as input. In the example below, notice that Pd provides a shortcut for typing both float messages and lists of numbers; you can leave off both the "float" and "list" selector and the objects will still accept and understand them. Since so much of Pd is basically about passing numbers around, these "implicit" float and list messages allow you to create your patch with less typing.
MESSAGE BOXES
Messages can go between objects directly - as they do in the bottom two rows of each group shown below - or be sent from message boxes (and pass through them, as we'll see later). T he message box allows the user to type a message that may be sent to an object by clicking it with the mouse. It also allows the user to view the message directly. Message boxes also allow the user to send more than one message to an object. If you put a comma at the end of one message, you can then create a separate message which will be sent immediately after the first message. T he comma breaks the message, creating a new instance.
141
T he message box also has an advanced feature: it allows you to send messages without wires by using a semicolon. Like commas, semicolons can be used to create separate messages. However, all messages after the first semicolon will be sent to a destination specified by the selector of the message, which below is the [receive] objects name "parameter" and "parameter1." (Messages may also be sent to the Pd engine in this way by using the selector "pd" to specify the destination). T his technique is usually used to send several different messages to different destinations. (Note: you can use a leading semicolon if you don't want to send anything to the outlet of the message box.)
142
If you want to work with a list that combines fixed and variable elements, you can use dollarsign variables in a message box. T hese will get filled in by the corresponding elements from the message that arrives at the inlet. $ 1 will take the first element, $ 2 the second, and so on. Note that $ 1 refers to the first element, not the selector-- with the message "frequency 660" $ 1 would be "660." Also, remember that "13" is shorthand for "float 13," so in the example below the message "time $ 1" will expand to "time 13." Finally, note that "symbol end1" is what comes out of the symbol box (which shows how symbol messages can be useful).
Combining the power of [pack] with variables, it's possible to build complex commands for your patches:
143
Besides deconstructing your messages, you can also sort them qualitatively, through string comparison. For that we use [route]. With [route] you can send different messages to the same input, and sort them out quite easily. T he [route] object has two modes: the first routes messages according to the selector; this mode is set whenever you provide symbolic atoms as the arguments, like [route dog cat]. In this mode, you could use the object to route messages according to the built-in message types bangs, floats, symbols, lists, etc.:
T he [route] object typically trims off the atom that is being used for the comparison (except for float and symbol messages). In "selector mode," you can use the message selector as a kind of "filter" to channel the remaining element to a specific outlet, as below:
144
Below is an example of the [route] object's "float mode," where list messages are selected according to the first element (so that you can easily route lists of numbers). T his mode is set by using float parameters with [route], such as [route 1 2 3]. (Remember that the message "1 20" is a shorthand for "list 1 20.")
If you just send [route] a message consisting of a single selector with no elements, you can use it just to trigger events. In this case, the output is only a bang.
And the grand finale: combine all objects (and variables) to create your own complex commands, and distribute them through the various parts of your instruments - all in the same patch:
145
146
32. MATH
In order to work your data, using mathematical functions is essential to produce something in Pd. Numerical values can be mathematically manipulated with numerous arithmetic objects. T hese are divided into sections, according to their function:
[+] [-] [*] [/] [pow] arithmetic [sqrt] [log] [exp] [abs] [sin] [cos] [tan] [atan] [atan2] [mod] [div] [max] [min] [clip] [moses] ranges [random] [==] [!=] [>] [<] [>=] [<=] operators [mtof] [ftom] [powtodb] [rmstodb] [dbtopow] [dbtorms] acoustical units [&] [&&] [|] [||] [% ] twiddling simple higher math trigonometry fraction work numbers and lower math relational convert bit
SIMPLE ARITHMETIC
T his section deals with basic mathematical functions: [+] - plus [-] - minus [*] - multiply [/] - divide [pow] - power Each math object does one operation only, taking usually two parameters for it. For example, if you want to sum 2 + 3 + 4, you need to create the necessary objects in a chain - because in reality you are doing two operations.
Don't forget that Pd differentiates between left inlets - the hot inlets and other inlets - the cold inlets. So if you want to make your operation sucessfully, you must first get the right number in, and only afterwards the left number.
147
So, if you have an operation where you know that one of the numbers is going to be stable, you should connect that number to a cold inlet in case the numbers can be changed and the operation still makes sense, of course.
Or you can use the second number as a parameter of your object. In case you don't have any parameter it's like having 0 as a parameter (which was what happened in the previous examples). In case you put in a new number, the second parameter will be actualized.
I guess it isn't necessary to explain how [+], [-], [*] and [/] work. But for the other objects some words will be necessary. [pow] is a basic exponentiation operation, but with some perks to it. First, you can't input any negative base numbers (the left input). And second, you can use negative exponents (right input).
HIGHER MATH
Here are introduced some objects that are often used in mathematics:
148
[sqrt] to take the square root of a number (no negative numbers allowed) [abs] for the absolute value of a number (turns negative numbers into positive numbers) [log] and [exp] are the normal functions already known in math
TRIGONOMETRY
T he objects here relate mainly to trigonometry, and they work the same way already explained for the previous objects. In case you need any information about trigonometry, we suggest to look for a more specific manual. Only one detail: there is no symbolic definition of Pi, so in case you need it, you'll have to type the numeric value as precise as necessary.
FRACTION WORK
With [mod] and [div] you can notice if a fraction produces a remainder and what that remainder is. [div] gives the result of a division without any decimal numbers. [mod] does the opposite, produces the remainder of a division. Note that these objects only work with integer numbers.
Although the explanation before might seem to be a bit dry, these objects are quite useful if you want to build a step sequencer. Combining [div] and [mod] you can control higher group orders of numbers, creating bars and beats. For example:
In this patch [div 4] divides the total beat count by 4 without any remainder, producing the bar number. [mod 4] shows only the remainder of the same division, which in turn is the beat number. Note that the original results vary between 0 and 3 - but it makes more sense to us to see numbers between 1 and 4, so we add 1 to them.
149
Of course, you can change the parameter at any time, by sending a new value to the right side input. Note also that these objects output a number even if the output doesn't change. [clip] acts as a mixture of both [max] and [min]. You just define the range boundaries.
Another much used object is [moses]. T his one doesn't limits the range, but distributes it through it's outlets - a bit like we already saw with [route]. For example, if we wanted to divide between positive and negative numbers, we would have to use only [moses 0]:
T his can be quite useful to distribute numbers around several inputs imagine you have an instrument which plays midi notes up to 60, and another for the higher tones...
RANDOM NUMBERS
Random numbers are quite important in electronic music. Whenever you want to add some imprevisibility to your patches, you'll need someone else to make decisions for you. For that you can use objects like [random] or [shuffle] to generate numbers for you according to certain rules. T hese numbers are never completely random, as there is always a certain logic to how they work. But they do feel random, as the repetition pattern is too large for a human to grasp. [random] is Pd's standard integer generator. What is makes is that if produces a "random" number between 0 and X-1, being X the generation parameter you give to the object (or feed it on the right side). Each time [random] gets banged, it produces any number in range. Here is a sequence of random numbers with [random]:
150
A quite similar object is [shuffle], a Pd-Extended object. It works on the same way (except that you define the range yourself), but with one big difference: it keeps the numbers in memory, so that no number is repeated until the whole sequence has been gone through. T his can make a big difference, for example, if you're playing back random samples, and want them to repeat more or less often. T hese are two nuber sequences where all possible numbers have been generated.
RELATIONAL OPERATORS
At some point while programming you'll need to compare values to judge situations. Pd offers the normal logical operations that you surealy already know. T hese objects produce an answer in binay form: 1 for yes and 0 for no.
151
[dbtorms] converts from decibels to linear RMS amplitude, so that 100 dB corresponds to an RMS of 1 Zero amplitude. [rmstodb] takes over the inverse operation.
And [dbtopow] converts from decibels to power units, that is, the square of the RMS scale.
BIT TWIDDLING
aa
EXPR
aa
AUDIO MATH
aa
152
33. LISTS
First, download the patches for this chapter: Lists.pd.zip Often you want to group elements like numbers together into a single message so that an object can respond to multiple things at once. T he simplest kinds of lists are made up of collections of numbers. For example if you want to turn on and off notes in a musical synthesizer, then you could make a list of two numbers that includes the pitch and the amplitude as a single message.
For many math objects, you can use a list as a shortcut for sending data to each inlet . With an object like [+ ], you can send a list of two floats to the left inlet, and [+ ] will interpret the second, rightmost number in the left as if it was sent to the right inlet, and the first, leftmost number as if it was sent to the left inlet.
153
Our shopping list from above would not be a list-message to Pd, because it starts with the symbol "milk" instead of "list". So Pd would interpret it as a "milk"-message. T o convert it to a proper listmessage, you can send it through a [list] object: [list] will take any input and convert it to list-messages by prepending the symbol "list" in front so that it reads "list milk eggs honey" afterwards. If the first element already was "list", it will pass the message unchanged and not add a second "list" in front. T o convert a list to a non-list meta-message, use [list trim] which will strip off the "list" again and leave you with "milk eggs honey".
Lists can used for processing collections of data. Once the data is organizing into lists, then it is much easier to sort the data and route it to the places it needs to go. T here are a number of objects that output a range of different kinds of data, so they need to use lists instead of specific outlets. Pd-extended includes a very useful library of objects that simplify all kinds of list operations: the list-abs. It gives you a wide variety of ways of manipulating and working with lists.
154
A "bang" to a hot inlet is a special message that causes an object to process and produce output using previously initialized or set values. In the above example, the following occurs : T he cold (right) inlet of the float object stores the result from the addition object [+1] T he float object does not output before it receives anything at hot (left) inlet. When sent a "bang" message, the float object sends a value and a 1 is added in the [+ 1] object T he result of the [+1] object is sent to the cold inlet of [float] Because this inlet is a cold inlet - the value is stored until the next bang. T his is why above construction does not produce an endless loop (thus crashing your Pd session or reporting a stack overflow) as shown in the example below:
155
Note : If there is no value specifies in the creation argument of the object inputting and outputting to and from the float, the default value will be output. For example, a float object will output 0 if no value was specified.
ORDER OF CONNECTING
While multiple incoming connections to the same inlet are rarely problematic, care has to be taken when: 1. the order of operations is important 2. making multiple outgoing connections from a single outlet T he order of events is determined by the order in which the inlet connections were made. Note : Since Pd does not illustrate the order of events it is not easily known by looking at the patch itself.
Trigger
T rigger is a very useful object for managing the order of events. T rigger takes an incoming value, converts it according to its arguments, and outputs the new values through its outlets in order from right to left. Below you can see T rigger in action.
Note : you can use 't' instead of 'trigger' when creating the object.
156
T he resulting number will be always the same as the input number as the scheduling logic is taken care of according to rules we defined so far. Consider again the improperly connected counter example that will either crash your Pd session or report stack overflow due to the infinite loop which is enabled:
From the point of view of depth, the above example represents infinite depth - the message passing is never finished.
157
In the above example, [metro 1500] generates bangs at the interval of 1.5 second (1500ms) and is sending the data to the [send beat] object. T his in turn sends the data to the [receive beat] object. A single send object can be received by multiple receive objects.
T he bangs in the above example are picked up by each [receive beat] object because they all have the same argument - "beat". T here is no limit to the number of sends and receives with same argument. It is possible to have many sends. Just add to the example above more [metro] objects:
158
159
Using [catch~] it is possible to further control and process audio (i.e.: volume control, VU metering, limiting, reverbs, etc...). Coincidentally, all objects we described above ([send], [receive], [send~], [receive~], [throw~], [catch~], as well as [delwrite~] and [delread~]) all work across different patches, subpatches and abstractions. In conclusion, the objects described above are powerful tools to not only send and copy data and audio around a single patch without messy connections, but to create connections between individual patches, subpatches and abstractions. A word of warning though: the arguments passed to these objects are always global - they are accessible from all patches and abstractions opened in a single Pd session. T his simply means that a situation can arise with unwanted 'crosstalk' of data or multiplies defined. Care has to be taken on names of arguments, while at the same time a technique exists to localize arguments using dollarsigns.
160
36. SUBPATCHES
With more complex coding, patches can become large and difficult to manage. Subpatches help resolve this problem. It is useful to think of subpatches as container or drawers, where code is organized and stored. A subpatch is created by typing "pd" into an object box followed by any an arbitrary word. When creating a subpatch like this, a new empty subpatch window will appear and you can put code in this window.
161
When you create inlets and outlets note that the origial subpatch object also gains inlets and outlets.
162
163
37. ABSTRACTIONS
Subpatches are useful to clear code from the main canvas. However, sometimes precisely the same code is used again and again, in which case it isn't convenient to create copies of subpatches. In these cases it is much more useful to call an external patch directly. T his kind of patch is known as an abstraction. Consider a situation where a random note on minor C scale converted to frequency is needed multiple times in one patch. A basic construct for this would be:
Every time [random] is banged, one of the displayed numbers will be transposed + 50 and through [mtof] converted to frequency. It's a construct that's inconvenient to reproduce many times in a patch. T he abstraction is a separate patch with inlet's and outlets and saved separately.
SAVING ABSTRACTIONS
164
T he abstraction needs to be saved on a path (folder) that Pd looks into each time an object is created. T hat path (folder) can be defined in Pd preferences however its simpler to have the abstraction in the same folder where the patch that calls it is saved.
165
IN OBJECT BOXES
In the same way as objects like [metro], [random] or [osc~] accept arguments (as in [metro 1000]) an abstraction can accept arguments that can be used inside of it. Consider an abstraction that combines [metro] and [random] objects to produce random numbers that also denote time intervals at which they are produced. In its basic form it could look like this:
T he abstraction above has two inlets, at left it would receive on/off (1/0 float) input and at right the range for the [random] which will then pass random numbers to [metro] and at abstraction's outlet. As it can be seen, the abstraction will initialize with 1000ms to [metro] object and range from 0 to 1000 to [random] object. Now, imagine you are writing an abstraction not knowing what specific arguments you want to pass on to it. Or, if you would like to change the value of the random object dynamically, you would have to change the value that is passed on to the right inlet. However, this can be done differently by passing arguments to the abstraction at the creation time using dollarsigns inside the abstraction. Consider this change including demonstration of usage. (Note: the loadbang object outputs a single bang when the sketch is opened):
166
At the creation time two arguments (1000 and 1100 ) are passed to an abstraction [randometro1]. Inside the abstraction, $ 1 is substituted with the first argument (1000 ), and $ 2 with the second (1100 ). T he effect (which was goal in the first place) is to be able to define the min-max range (as opposed to only 0-max) at which abstraction works. Because [random] inside the object needs a 0-max range, first argument (presumably smaller) is subtracted from the second. T he result is passed to random to produce random numbers which are then added to the first argument. In demonstration of usage in the window behind the abstraction this construct produces random numbers between 1000 and 1100 in the first case, and 500 and 600 in the second. While $ 1, $ 2, ... etc. represent first, second, etc .. argument to the abstraction, there is one special dollarsign that is extremely useful in Pure Data. $ 0 is a variable that is internally substituted by unique fourdigit number per patch or instance of abstraction. In other words, Pd takes care that each instance of an abstraction or patch will be assigned this unique number and stored in $ 0 variable. T he usefulness of this is immediately apparent in the following example of simple delay abstraction where delay-lines with the same name in multiple instances of same abstraction must be avoided:
167
It is important to understand that, despite $ 0 isn't actually substituted with the unique number inside the delwrite~ object, the latter actually writes audio signal to delay-line named "1026-dline". $ 0 variable is assigned in every opened or called patch, which also solves the problem of two or more instances of same patch (i.e.: simple synth). $ 0 also saves from situations from unwanted crosstalk of frequently used variables in different patches. An attentive reader/user could also point out a possibility to use $ 1, to use an argument passed to an abstraction (like "one" and "two" in above example), in which case care must be still taken to assign unique arguments to abstractions used in the same Pd session. $ 0 is at times called localized variable, however, in my view, that is not entirely true. A variable constructed with $ 0-something can still be accessed from the global namespace by simply finding that unique number and than calling that appropriate variable (like for example to read the delay-line named 1026-dline from above example from within another independent patch). In fact this can sometimes be even useful. It is however true that using dollar variables is a localization technique.
IN MESSAGE BOXES
A frequent confusion arrises from the use of dollarsigns in message boxes. It is important to understand that dollar variables in message boxes are actually totally local to that message box itself regardless where they appear. T hey will be substituted only by what a message box receives on its inlet. In an example of abstraction within which both types of dollar variables are used:
168
T he [shotline] abstraction, which has a goal of producing a ramp of values in specified time from some starting value to ending value, takes three arguments - speed, from-value and end-value. T hese variables are accessed inside the abstraction with $ 1, $ 2 and $ 3 in the [pack object]. T he latter sends a list of those three arguments to message box, in which $ 1, $ 2 and $ 3 represent only elements of an incoming list and not directly arguments of the abstraction. Message box first send the second element, followed by a comma - so it resets line to that value, and then a pair of third and first element which correspond to target value and time-frame of a ramp.
169
So, every time when an abstraction like that is created, when it is desired to be controled by a slider, many steps are needed to recreate the same visual and programmatic construct. Luckily, there is a very powerful feature of Pd: graph-on-parent . It enables a subpatch or an abstraction to have a custom appearance at the parent 'calling' patch.
17 0
Instead of plain object box with the name of abstraction and arguments, it can have different size, colour, and all the gui object inside. Here's how it's done, continuing on delay: inside the abstraction or subpatch, rightclick on white underlying canvas and choose properties. Inside a dialog that appears, enable toggle for graph-onparent:
Applying this will create a grey-bordered box within the abstraction. T his box represents the shape and form of the abstraction on the parent canvas (the calling patch). Whatever the size and contents of that grey box will be visible excluding connections, object boxes and message boxes. In the properties of the abstraction below the graphon-parent option two rows of four values represent X and Y settings. Size will set the size of the box while margins will only set the position of that grey box within the abstraction. Adjusting these setting accordingly:
17 1
Inside the grey box it is now possible to create a suitable interface, according to users needs and aesthetic preferences needed for functional and pleasurable control of parameters. See properties of individual GUI objects (like canvas, slider, etc) and experiment what can be done with them. Simple delay abstraction in this case receives an underlying colour canvas and two sliders, one for delay-time and the other for incoming level:
While editing the abstraction with graph-on-parent, abstraction is greyed-out on the parent canvas until the abstraction window is closed. Only then the final appearance can be seen:
T he purpose of a pixel wide transparent gap between the gray border and canvas in the abstraction is to reveal inlets and outlets at the parent window - however with sizing of inlaid canvas, even black borders can be hidden. Calling this abstraction as usual - by creating an object box and typing the name of abstraction without the extension .pd - will always instantly create this GUI:
that needs nothing more than to connect to audio signals and adjusting controls:
17 2
17 3
CREATING AN ARRAY
T o create a new array, choose "Array" from "Put" menu and a dialog appears:
Here the name and size of array can be defined. T he name of the array should be unique and $ 0 can be used in a name (i.e.: $ 0-sample1) to avoid crosstalk. T he size of the array defines how many elements it will hold. If the array will be used to control a 16-step sequencer, the only 16 elements are needed. But if it will contain a two seconds of audio at a 44.1KHz sampling rate, then the array would require 88200 elements. (T he array can also be resized later, however, when the soundfile is loaded into it.)
17 4
T he "save contents" button will cause Pd to save the contents of an array within the patch file. T his is useful when it stores data that might be used each time the patch is opened, for example to modulate the frequency or amplitude of a sound. However, this is not recommended if soundfiles will be loaded into it, as the audio data will be stored as text information inside the Pd patch! T he next three options, "draw as points", "polygon" or "bezier curve", define how data will be visualized: as discreet points (horizontal lines), as cornered zigzagging connected lines or smoothed bezier-curved line:
T he last option is whether to display the array "in new graph", or use an existing one ("in last graph"). Most often, each array will use its own, new graph. However, displaying multiple arrays in one graph can be a way of visually comparing information.
17 5
In above example, [tabwrite~] is sent a "bang" every half second to continuously display the waveform produced from two [phasor~]s, and a [clip~] object.
In above example, for each index number (they are produced with a counter and start from beginning (0) with [mod 100] at 100) a random value between -1 and 1 is written to a table.
17 6
With [tabosc4~] table data is used as an oscillating waveform - like sinewave is used in sinewave oscillator [osc~] and sawtooth wave is used in [phasor~]:
In above example an oscillating waveform from table7 is used to modulate frequency of an oscillator that is using the same waveform to synthesize sound. Changing the table in realtime will influence the modulation and oscillation. Source for hours of fun!
17 7
Following to the aforementioned possibility of accessing individual samples within a sound recording that's been loaded into an array, a [tabread4~] object allows more computational flexibility. Below, [phasor~] object produces ramps (sawtooth wave) from 0 to 1 at the audio rate (commonly 44100 times in a second). If frequency of the [phasor~] oscilator is 1Hz, it will output a ramp from 0 to 1 in exactly one second. If multiplied by 44100 and sent to [tabread4~], it will read first 44100 indices (indexes) in a second and output the values as an audio signal - example below tries to demonstrates that with a twist or two:
First twist comes from an idea of changing the frequency of phasor, and this way slowing down the ramps. T his would however shift the pitch of the sound - like changing speed of a vinyl record. T his is prevented by multiplication with higher number of samples, which effectively turn the parameter into the length of a sample that is being looped instead of slowing it down. Looping is here because [phasor~] starts again at 0 after it has reached 1. T he other twist is the starting point, which simply shifts the whole loop by adding number of samples (seconds multiplied by 44100).
17 8
17 9
180
41. GEM
GEM which stands for "Graphics Environment for Multimedia" is a tool for visuals. With GEM it is possible to generate and manipulate 2D and 3D graphics and animations, process & modify media like images & videos and generate particles. T his manual will explain the main objects that comprise GEM, and the basic techniques you will need to get started creating your own GEM projects. A good start to get an idea about the various possibilities what can be done with GEM is to take a look at the examples & help patches that come with GEM. T hey can be can be accessed via the Pd Help Browser (in the Help menu, under "Browser..."), under "examples/Gem" or have a look at the GEM manual in "manuals/GEM."
GEM is a Pd Library and comes ready to use as a part of Pd-extended. It was initially written by Mark Danks. Some of the past and current GEM developers are IOhannes Zmlnig, Chris Clepper, James T ittle(tigital), Cyrille Henry.
181
[GEMWIN]
[gemwin] is the GEM object that represents the window into which your graphics will be drawn. It controls the timing of your graphics, by scheduling when frames should be drawn to the screen based on the framerate, and discards them if they have taken to long to render (is this true?) . By default it also clears the window every frame and sets it to a "background" color, specified as a list of R G B values. Messages to [gemwin] change the size of that window, start and stop the rendering process, alter the position from which you look at your 3D , and control various other aspects of the window, such as antialising . Other messages to [gemwin] are explained in detail in the [gemwin] help patch.
182
GEMHEAD
[gemhead] is the start of a chain of graphics operations connected by patch cords that should be executed every frame. Drawing operations, including video effects, cascade from the top down, adding to each other flow downwards across objects. T his chain of operations is triggered invisibly by [gemwin] according to the framerate you have set. You can turn this automatic rendering off by sending [gemhead] the message 0. Additionally, [gemhead] can be triggered manuall by a bang, which is useful when you want to control the order in which your graphics chains are drawn. With several gemheads, you can force this execution order by either giving them an argument or set their order number. Lower numbers are triggered first. T he default ordering number is 50.
183
Fig. 1: A Basic GEM patch. T he key objects in this example are [gemwin] and [gemhead]. In order to open up a window into which you can draw stuff you have to create an object called [gemwin] which is your render context and you send it the messages "create" to create the window and "1" to start the rendering. Starting with a [gemhead] you create a "render chain", that will draw things into your GEM window. In this case an image which is mapped onto a rectangle. Here is how it looks like.
184
T he order in which objects are connected in Figure 1 might seem a little strange to you. From your real life experience you would probably do it the other way round: First grab a piece of paper or a t-shirt and then draw an image onto it. In Gem this is different, you create the image first and then you decide what you're going to do with it: project it on a square, a sphere, a 3d model. Another basic principle of how OpenGL works, is that you distinguish between functions that affect your images and functions that affect your 3d shapes. Images have to be mapped onto 3d shapes. T his means: usually no image will be drawn in the GEM window unless it is associated with a 3d shape, very often a rectangle, but of course there are also a lot of other shapes, more about that later. Eventually, this gives us two sets of GEM objects: the one that relate to image processing and another set that relates to shapes and their transformations. T he first group will get a lot of attention, especially in the beginning of this manual, but on the other hand, always have in mind, that images are only one aspect of OpenGL. T he objects that deal with textures are called pix objects and have the prefix "pix_" in their object name. T he doorway into the shape world is called [pix_texture]. T his object sends the image from your CPU memory to the graphics card memory from where it is "mapped" onto one or several shapes.
185
[PIX_IMAGE]
In the basics chapter we already used the object [pix_image]. T his object allows you to load picture files. Supported formats are *.tif, *jpg, *.png, *.bmp and *.gif. T o load an image into [pix_image] either add the filename as an argument or send it the message open filename. If you want to select a file using a file browser you can use the object [openpanel].
[PIX_FILM]
As with [pix_image] you can load movie files by passing [pix_film] the file name as an argument, or by sending it an "open" message with the filename. T he list of supported formats may vary depending on your installed movie codecs, but usually you should be able to play *.avi, *.mov and *.mpg files. Please be aware that sound is not supported by [pix_film] ([pix_movie] neither). If you want to sync a soundtrack of a video to your images, you have to first extract it using an external video editor. [pix film] will play your movie automatically if you send it a message "auto 1". T he framerate at which your movie is played is dependent on the framerate that was set with gemwin. T he message "auto 0" will cause [pix_film] to just display the current frame. You can use the right inlet to scroll through your movie or jump to a certain frame. T hat also allows you to play movies at different speeds, even backwards. T he rightmost outlet of pix_film will output a "bang" everytime the end of the film is reached.
186
[PIX_MOVIE]
[pix_movie] works exactly like pix_film. T he only difference is that you don't need [pix_texture]. You can directly connect the outlet of [pix_movie] to a rectangle.
[PIX_VIDEO]
[pix_video] will grab live input of a camera that is attached or built into your computer. Usually you can receive a video signal only once on your machine, so if another application or even another Pd patch already uses video input, [pix_video] will not be able to receive a signal. On the other hand, if you have several cameras attached to your system, you can use several [pix_video] objects and specify the the camera devices with messages like "device 0" and "device 1".
187
A "dimen" message will let you set the resolution of your video image. If you use a small resolution, your render engine will have less pixels to render and thus be faster, but of course this will also decrease the image quality. T o test different resolutions you might want to set the quality setting of [pix_texture] to 0. You will also realize that not all resolutions are supported by your system. Just play around with dimen to figure out how high or low you can set dimensions.
RELATED OBJECTS
Finally, I also would like to briefly mention some other objects that allow you to "create" images. [pix_multiimage] will allow you to load several images at once. Use the right inlet to switch between them. Also check out [pix_set] if you want to create an empty image. Or play around with [pix_sig2pix~] if you want to feed your audio signal into an image buffer.
188
T his is a good starting point to study the basic structure of a video mixer in gem but can be / should be modded when you want to make a serious use of it.. You can for example render each element of the composition in an diferent rectangle so you can modify rotation, position, size, etc in an independent way, instead of doing that with the final mix. Also I recommend to make abstractions like "pd player" "pd chroma" "pd webcam".. So you will have a nice and clean modular interface.
189
NOT E: We need to transform the colorspace into rbga and enable the alpha blending. We can see which object do that function and where they should be placed.
1.6. COLOR.
With [colorRGB] we can colorize the video, images, etc.. theres also an object called [color] but in that case, we dont have an independent "inlet" for each color component. If you want to make changes in the opacity, you have to add the [alpha] object before the [colorRGB]. Default values are ( 0 0 0 1).
190
Here I added the message [dimen 512 384( to [pix_video] to adjust the dimension of the two sources to mix. If the size of the two sources in pix_mix doesnt fit, this will not work!! . By default, pix_video outputs 320x240 that is a decent resolution for realtime live video mixing so if you want to work in any other resolution, keep this in mind.
3-CHROMA KEY
Lets continue modding the "mini_mixer" ..
191
Here, instead of the [pix_mix] we have the object [pix_chroma_key]. this obect its useful to make compositions and making transparent some parts. T he [direction( message defines which video inlet will be "processed". Also in Gem we can use another standard blend modes like add, substract, multiply, difference... we can find the objects in /reference/Gem or we can call them directly: [pix_subtract] [pix_diff] [pix_multiply] [pix_add].. Its recommended to take a quick look into the help of this objects before using it, otherwise, probably you will get only Absolutely white images or absolutely black....
In this example, we can see [pix_diff], this objects shows the difference between two pixes.
192
193
[PIX_LUMAOFFSET]
[PIX_DUOTONE]
194
[PIX_GAIN]
[PIX_THRESHOLD]
195
196
46. RECORDING
Gem window Here [pix_record] will be used to make a simple animation of png images (including transparency). T he patch might look a bit complicated but basically: - the top quarter allows to create a Gem window and import Gem and cyclone/counter - the lower-right part will mix two pictures at a certain rate given by the [metro] object - the lower-left part will trigger recoding through [pix_record] Note that pix_record can (at the time of writing) only record one pix chain - you cannot save a texture projected on a geometry (try with a [cube] for example).
197
198
1- FULLSCREEN
2-EXTENDED DESKTOP,
Most of the time, you have to deal first with your operating system before even opening pd... While nothing is attached to the video output of the computer, the graphics card reserves for him all the performance, so usually you have to connect the vga/s-video cable or in some computers, like the new macs, you have to connect an "adaptor" (DVI-vga /DVIcomposite..) to "inform" to the graphic card that you want to use the video output and then, your screen will turn black for one second (in case of osX) and now you are ready to go to the display preferences/ screen settings .. and turn on the second monitor, set the resolution and "extend desktop to that monitor" (in case of windows ) and set resolution and mirroring (on or off) in osX. Note: Some times is better plug the video cable with the computer "off" an then start the computer in order to let the system recognize and adapt to the video output. Mind that if we are using composite or s-video cable, resolutions greater than 7 20 x 57 6 are only going to cause trouble.. Also when you use DVI/Vga, the more resolution you use, less performance.. Apart of this things, When we want to use another screen or when we want to "project" the output of Gem, we are going to use at least two basical things: "fullscreen" and "offset". in this patch we can see how it works..
199
Just mind that until you destroy and create the gemwin again, the changes in "fullscreen" or "offset" doesnt take effect. Offset its the amount of pixels that you have to displace the gem window. T ipically, you just need to displace the gem window in the X axis as much as the width pixels your screen has. (1024, 1280, 1440...). In the case of laptops, sometimes its required also to add a little bit of offset in the Y axis, Something like 20 or 40 should be enough... Remember also that GEM its able to perform complex 3d things, so in addition to this basic setup objects, we can also set up a "lightning", a background color, a "camera position" and also fog!! ? !
200
[pix_movement]
Compare the previous frame to the current one. It takes a threshold value (0-1) as an argument and in the second inlet.
T his will result in all pixel information blacked out exept the space where a difference is detected relative to the previous frame. We will get to the point how to measure that to trigger things when we compared it to
[pix_background]
It is the cousin of pix_movement with the difference that we can set the reference frame to which the current frame is compared. T his is called background substraction.
Click on the reset message to pix background to set the current frame to the reference frame. A drawback of pix_background compared to pix_movement is, that if lightning situations change, we will have to re-reset the frame to compare the current frames to. [pix_blob]
201
either way, we need another object: [pix_blob]. T he monochrome information we receive of Pix_movement/pix_background are called blobs. T he [pix_blob] object will give us mre infomations about those blobs, which we need if a) we want to trigger things if something moves in the field of view of the camera (pix_movement) or b) something is in the field of view of the camera what wasn't there when we set the reference frame (pix_background).
With this patch, if you move in front of the camera, you will see the output of pix_blob's last outlet changing. Where I left the empty box you can continue to add something you want to have triggered. Possibly a [> 0.001] which is the threshold followed by a [change] and a [select 1] to generate a bang each time the movement goes higher than a defined value. Getting the coordinates OK, we built a motion detector, but what about the coordinates? Where is the actual movement happening in the image? [pix_blob] has two more outlets which are just that. note: i was trying to translate those patches into a manual: http://www.uni-weimar.de/medien/wiki/Bewegungsmelder T he Chapter needs to be extended to cover pattern recognition (T UIO), pix_opencv (face recognition), blobs and multiblobs, IR illumination, multitouch technology and Kinect depth information/skeleton data.
202
SENSORS
49. GAME CONTROLLERS 50. PDUINO: 51. INSTALLING ARDUINO ON FEDORA 12 (X86_32) 52. SOMEBODY SHOULD SET THE TITLE FOR THIS CHAPTER! 53. INSTALLING EXTERNALS 54. SOMEBODY SHOULD SET THE TITLE FOR THIS CHAPTER! 55. PDUINO LIGHT SENSOR
203
Let's start with [key] and its partner [keyup]. [key] outputs when the key is pressed down, and [keyup] outputs when the key Both of these have a single outlet which outputs a number based on which key was used, so here "Escape" has a key number of 27 . T his key number is based only on the position of the key, not the letter it types. T his is useful since there are many keyboard layouts for different languages and countries.
So we can now attach messages to the [select] boxes to make the space bar (key number 32) control a noise burst, and the Escape key (key number 27 ) control a 250 Hz sine wave. We make [key] send a 1 to make the [noise~] output sound to the [dac~], then [keyup] sends a 0 to turn off the noise.
So that illustrates the most basic way of getting data from the keyboard. It is useful for many things, like turning the DSP on and off, creating the [gemwin], or toggling different parts in a performance patch. You could all of the keys to make a laptop piano.
MOUSE CURSOR
204
Basically every computer has a mouse that controls a little arrow on the screen. T his little arrow is the mouse cursor. In Pd, we can get information about that mouse cursor using the [cursor] object. One piece of information that is fun to play with is the position of the cursor on the screen, called the x, y coordinates. When you bang the [cursor] object, it will output the current information about the position of mouse pointer. T he "motion" message gives us the x, y coordinates. T he message looks like "motion x 361" where 361 is the x position in pixels, or there is also "motion y 237 " and 237 is the y position in pixels. If you use [print] you can see the "motion" messages in the Pd window .
Right now, we are only interested in the "motion" information, so we are going to use [route] to get just the "motion" messages from the first outlet on [cursor]. T o get updated position information automatically, we can "turn on" the [cursor]. It has a built-in clock, so you can turn it on just like [metro]. T he difference is when you turn on [metro] you get regular bangs, when you turn on [cursor] you get regular information about the mouse cursor and mouse buttons. A few [route] objects will sort this information to get just the x, y position off the cursor on the screen. T he [route motion] sorts out just the messages related to the mouse motion, or x, y position. T hen [route x y] sorts out the x and y positions to separate number boxes so that we can see them.
So now we have two floats to work with, perfect for controlling the frequency of two [osc~] sine wave oscillators. Create two [osc~] objects, then connect one float to each, then connect both [osc~] objects to a [dac~] to output the sound to the speakers. Be sure to turn on the DSP audio computation, and you can now control these two oscillators with the mouse!
USB HID
205
You can also use just about any HID, such as joysticks, digitizer tablets, gamepads and stomp-pads are widely available and inexpensive. Most of these HIDs are well built but not expensive, since they are made for the mass game market. T he HIDs that are designed for "gamers", serious video gamer players, are very good quality but can cost quite a bit more.
Plug your USB joystick or gamepad into your computer, for example, and they will be recognized by your operating system as HID devices. Pd can get data from HID devices that your operating system recognizes using the [hid] object. For this example, we are going to start with a gamepad. T his one is called the Logitech WingMan Gamepad Extreme, it is old so you can buy it for less than US$ 20. It is more fun than your average gamepad because it had a tilt sensor in it.
Start by creating an [hid] object and see what it finds. Send the "print" message to [hid] to get the list of HID devices that the operating system recognizes. We are looking for Device 6: 'Logitech Inc.' 'WingM an G amepad Extreme' version 259 @ location 0x1a200000 , the name matches the name of the gamepad above.
206
T he gamepad is device 6, so send [hid] the "open 6" message. T hen create a "toggle" from the "Put" menu, hook it up to the left outlet of the [hid] object. [hid] has two outlets: data comes out of the left outlet and status messages come out of the right outlet. We want the data, so we are only going to use the left outlet for now. Create a [print] and attach the left outlet of [hid] to that [print]. Now we are ready to see some data in the Pd window, turn on the toggle and you should see a lot of data when you move the gamepad and press buttons. NOTE Make sure you select your (device # ) before turning on the toggle switch in order for it to work properly.
Now we can do something a lot more fun, let's make a simple instrument. We can make the left-right X axis of the gamepad control the frequency and the back-forth Y axis control the amplitude. We need to understand a little about the messages coming out of the left data outlet to use them. T he data messages that come out of the left outlet of [hid] always have three parts: "type", "element", and "data". A message representing the gamepad's left-right X axis might look like "abs abs_x 254" or "abs abs_x 3". So we need to [route] those messages to get just the numbers. T hen hook up some number boxes to see the numbers change.
207
Now, the last step is the best, we get to make some noise. T his example uses an [osc~] but you can use any synthesizer that you want, or even movie players, 3D shapes, or whatever else you can control using numbers. After all, once you have a number in Pd, it is just a number no different than any other, and you can use that number to control anything else. So we can use the X value directly to control the frequency, so hook that up to the left inlet of the [osc~]. T hen create a [*~] to control the amplitude. For amplitude we want a number between 0 and 1. T his gamepad has a maximum value of 1023, you can find that out by moving the gamepad around and watching the numbers. So we will divide the Y value using [/ 1023]. T hen connect the [/ 1023] to the right inlet of the [*~]. Last, create a [dac~] to output the sound to the speakers, and connect the outlet of the [*~] to the [dac~]. T urn on the DSP, and you have a simple instrument!
208
and this is the USB HID controller finished with infrared sensors, accelerometer, potentiometers, and pushbuttons.
HID Its also the protocol used to transmit the data of the sensors, buttons, etc, through the usb cable and also via bluetooth or infrared... One of the advantages of this protocol is that is "plug&play" by definition and most of the USB HID devices doesnt need any drivers to work. Another good thing about HID protocol is that its optimized for usb, so is faster and easier to use respect to other protocols like "serial" that requires more complex hardware and its own drivers.
HID TO PD
T o read HID data from a device in pd there are several possible objects. we can use the object [hid] in linux / osX and [hidin] in windows. Before opening pd, we should plug the device, otherwise this probably will not show up.. T o "inspect" for HID devices (internal and connected to the usb) we send the message "print" to the object [hid] and then, we can see in the console which HID devices are detected with pd NOT E: In some computers, there are small electrical differences between the USB plugs so sometimes, if a USB HID device doesnt show up, we can solve this by changing the plug and restarting pd.
209
T o "inspect" for HID devices (internal and connected to the usb) we send the message "print" to the object [hid] ([hidin] in windows) and then, we can see in the console which HID devices are detected. We can see here also that pd assigns a number to each device. this number is used to select which HID device we are going to use to get data.
T his device "5" (xxxxx-avr) is that USB HID device with sensors and potentiometers that we can see in the other picture.
210
50. PDUINO:
Arduino is another microcontroller interface for creating alternative tools to map physical interaction. It is the result of an open source hardware project aimed at providing the art and design community with a tool for creating electronic interfaces. By allowing users to interact in various new ways, these new interfaces can be seen as enabling more natural bonds with computers. Arduino consists of an 8bit microcontroller and a port through which to communicate with a computer. T his allows a connection to existing software packages such as, Pure Data. Pduino library provides communication between Arduino and Pd objects, which enables us to control analog and digital sensors with Pd interfaces. T his involves receiving input data throughout the sensors as well as sending data to control and change states of the sensors. In order make this communication happen there are some steps before you can connect the Arduino board to your computer.
211
in a T erminal which can be found in "Application/System T ools"-Menu. If Java is not installed or a version older then 1.6.0 is found, download and install Java from http://java.sun.com/javase/downloads/index.jsp or use yum:
su yu m in st a ll ja va -1.6.0-o p e n jd k
Next the packages uisp, avr-libc, avr-gcc-c++, rxtx and avrdude are required, type:
su yu m in st a ll u isp a vr-lib c a vr-g c c -c ++ rxt x a vrd u d e
Now download the Arduino-Sotfware from http://arduino.cc/en/Main/Software. Unpack the downloaded archive. If you use the Arichive Manager, double-click the file and and click "Extract".
212
In T erminal:
tar -xvzf arduino-00??.tgz
In order to enable the communication with the Arduino with your user account, add your user to the groups uucp, lock and dialout to enable the necessary permissions.
su usermod -G uucp,lock,dialout username
Alternatively you can use the graphical user interface "Users and Groups" which can be found under "System/Administration". First of all you have to disable "Hide system users and groups" in "Edit/Preferences" for showing the needed groups.
Select the groups, one after the other, click on "Properties/Group Users" and activate your username. After logging off and logging in, the changes take effect. Start the Arduino Software with
c d <path to arduino>
./arduino
213
Preparations check out http://arduino.cc/en/Guide/HomePage download and install Arduino.app and driver Installing Arduino on Mac OS X
214
215
Once you have uncompressed the Pduino zip file, then look in the Pduino-0.4beta2 folder. Inside is a bunch of files, the first ones to copy are arduino.pd and arduino-help.pd . We are going to copy this into a folder where Pd-extended automatically looks for user-installed files. T his file has a different location depending on which operating system you are using. GNU/Linux In your home folder (also called ~ ), create a folder called pdexternals . Copy arduino.pd and arduino-help.pd into ~/pdexternals/
Mac OS X In your home folder (also called ~ ), open up the Library folder and create a folder called Pd . Copy arduino.pd and arduinohelp.pd into ~/Library/Pd . Windows Open up the folder in your main drive (usually C:) where the programs are installed, in English, it is usually called Program Files . Inside this folder is another folder called Common Files , open Common Files then create a folder called Pd . Copy arduino.pd and arduino-help.pd into \Program Files\Common Files\Pd .
216
into . In other languages, this folder is named in that language. For example, in German, it is called \Programme\G emeinsame Dateien\Pd , in Spanish, \Archivos de programa\Archivos comunes\Pd , in Portuguese, \Arquivos de programas\Arquivos comuns\Pd ) Once you have copied arduino.pd and arduino-help.pd into the right place, you can now create an [arduino] object in any patch. Create a new patch and try creating an [arduino] object. If that works, then try opening the help patch by right-clicking and selecting "Help". If there was a problem with either one of these steps, then the arduino.pd and arduino-help.pd files are not in the right place. So carefully read the file locations again. If it is still not working, then try getting help from the Pd mailing lists, forums, or IRC chatroom.
217
For Linux replace the files in <path to arduino>/examples connect Arduino board and lauch Arduino application now setup your board:
218
(...)
Here you can see if the usb-driver is correctly installed. If the usb-port /tty.usbserial... does not appear in the list you have to install the driver again.
219
After setting up the board and serial port, in the tool bar click the " Verify button "
in order to upload firmware, first press the reset switch button on your Arduino board, which is located closer to the main Atmel AVR AT mega chip on your board. T he location of the reset switch on the board might vary based the type of the Arduino board.
now open menu >File >Examples >Firmata >SimpleAnalogFirmata and the Fimata will be opened in your Arduino application. In this chapter we will introduce analog sensor examples; therefore we will upload SimpleAnalogFirmata to the board. For other types of sensors, such as any digital sensor or servo motor sensor, you need to choose the related Firmata based on your sensor type.
220
221
Lauch Pure Data In Pure Data [arduino] object will set the connection with the firmata that you just uploaded to your Arduino board. When you create an [arduino] object in your patch, all the abstractions that are required for Pduino library will be loaded as well. T he inlet of this object lets us to send messages to start serial port communication between the computer and Pd. Since there are more than one serial port in a computer, first we have to figure out the number of the serial port that the Arduino board is connected. Simply by sending a [devices( message to the [arduino] object, you can get the list of devices connected to your computer on the main Pd window.
Once you are sure that you have connected your Arduino board to the computer, click the [devices( message box and you get similar type of information in the main Pd window as below.
222
In this case, Arduino board is connected on the port /dev/ttyUSB0 and its port number is 4. T herefore, in order to start Arduino - Pd communication, related to the above example, you send [open 4( message to the [arduino] object.
Main Pd window will display similar type of below information if the serial connection is opened successfully.
get_baud_ratebits: 115200.000000 set_baudrate baudbits: 4098 [comport] opened serial line device 4 (/dev/ttyUSB0)
Once you open the serial port connection, you can immediately receive data from your Arduino board. First you need to enable sensor data to pass through [arduino] object and later separate the sensor data types. In this below example, we focus on analog input sensors; therefore [route] object only enables analog sensor type. T he later [route] object separates the analog input data so that you can receive each sensor data in a separate number box.
223
Even though there is not any sensor connected to the Arduino analog pins yet, when you enable the data to flow through [arduino] object, analog input pins number boxes in above patch receive flow of numbers. T hese are simply noise data that the empty pins on Arduino board generates.
224
225
226
Because in this circuit there is only one analog sensor and it is connected to the Arduino Analog in 0 pin, if you connect a0 number box output to a [send] object, you can receive the sensor data in different Pd patches as well. Just a reminder, you should use the same target name in both [send] and [receive] objects.
Below Pd patch example receives the photoresistor sensor data to control the amplitude value and the central frequency of the bandpass filter.
T hese are the basic examples for Pduino library; however arduinotest.pd includes other type of sensor connections through [arduino] object.
227
NETWORK DATA
56. [NETSEND] AND [NETRECEIVE] 57. OPEN SOUND CONTROL (OSC)
228
[NETSEND]
Creating an instance of [netsend] will open a network socket to another computer. Both TCP and UDP protocols are supported. [netsend] defaults to a T CP connection. You can change to UDP adding the argument 1 when creating the object. You will need to supply an IP address or hostname, of a host machine, as well as a port number. You can provide this information with the message "connect IP_address port_number".
T he outlet on the [netsend] object indicates if it is connected to a remote computer or not. It will report 1 if it is connected, 0 if it is disconnected. Once you have established a connection, you may send messages. You must prepend all messages with the word "send". For establishing a stable protocol, it is advisable to name each message being sent.
You can terminate a connection with the message "disconnect". T he messages are sent using the FUDI protocol. If we were to examine one of the messages sent above, it would appear like this:
M yText anything;
[NETRECEIVE]
229
Creating an instance of [netreceive] will open a network listener socket on the local computer. Just like [netsend], UDP and T CP are supported. [netreceive] takes one argument, the port it is listening on. An optional second argument will change the object from T CP to UDP. [netsend] has two outlets when it is listening for T CP, and one when listening for UDP. T he left outlet prints out any data it has received. T he right outlet reports the number of active connections.
230
osc_udpsend.pd Sending a connect message to an [udpsend] object opens an UDP connection to another computer. As with [netsend], you have to provide an IP address or hostname, and a port number. T he UDP connection you just opened can only really send bytes. In order to send an OSC message over the opened connection, you have to pack it first, using the [packOSC] object.
231
osc_udpreceive.pd T he [udpreceive] object tells the patch to listen to a given port number. T he OSC message has to be unpacked using the [unpackOSC] object.
IP addresses, hostnames
If both sending and receiving PureData patches are on the same computer, you can use the special loopback interface: the IP address is 127 .0.0.1 and the hostname is "localhost". If both computers are on a local network , you can use their network names, or else, to find out a computers IP address, open a terminal and type "ifconfig" (Mac/Linux) or "ipconfig /all" (Windows). If you want to open a remote connection to a computer over the internet, consider using T CP instead of UDP (see below) and proceed as with a local connection.
Ports
Every computer has a large number of ports. Each service (such as a webserver, a database etc.) may listen or send data through it's assigned port. Which port is used for what is a matter of configuration, but PureData uses port 9001 by default. You can choose another port if you want to, just make sure the port you choose is not already in use. If you are communicating with another application, you will have to find out which port it is using.
232
osc_pathsend.pd On the receiving end, the messages are routed using the [routeOSC] object and used to control an oscillator.
osc_pathreceive.pd It is important to understand that OSC does not come with predefined messages, like MIDI does. It is up to you to define the messages you want to send and receive.
OSC ARGUMENTS
An OSC message can have any number of arguments. T his example creates a message with 2 arguments for note (MIDI note number) and amplitude.
233
osc_argssend.pd On the receiving patch, the arguments are unpacked using the [unpack] object, and used to control an oscillator's pitch and amplitude.
osc_argsreceive.pd
TYPES
T he previous examples all send typed-guessed messages. It is also possible (and good practice) to set the types of the arguments. Common types are: i: integer
234
f: float s: string T : T RUE F: FALSE T his example uses the [sendtyped] object to send a boolean (true or false), an integer (a MIDI note number) and a float (amplitude).
osc_typesend.pd Depending on the value of the first argument (the boolean argument), the receiving patch puts out a sine or a sawtooth wave.
235
osc_typereceive.pd Note that PureData and OSC use different types. PureData only knows floats, strings and symbols.
BUNDLES
Sometimes you might want to send several messages at the same time. T his example sends one bundle containing 3 notes. Bundles are enclosed in square brackets. Inside the brackets, you can pack any number of messages.
236
osc_bundlereceive.pd
237
Connecting to another PureData patch or to your own application written in another language
Avoiding name conflicts: Keep in mind that you, or the person using your patch, are on a network. T his network is shared by a number of computers running a number of applications, some of which might be using OSC too. So you should be careful to avoid name conflicts. A conflict happens when two applications use the same address pattern but mean different things. T o avoid this, the first part of your address pattern should be unique. A foolproof, albeit pedantic, method is to use your domain as a prefix for all your messages e.g. /net/mydomain/... Type conversion caveats: PureData and OSC use different data types, so type conversion takes place every time you send or receive anything else than a float or a string. Due to the way data is handled internally, PureData can only work accurately with 24 bit numbers. Above this, integers gradually loose precision. Since OSC can carry 32 bit integers, you will get strange results above 167 7 7 216.
238
MIDI
58. MIDI
239
58. MIDI
T his chapter will show you how to use midi to receive notes from midi keyboards or control messages from standard midi devices and also how to send midi to other programs or to midi hardware.
SETUP
Before start working with midi, you should select your device in the dialog: Preferences/midi settings
T hen select which device you want to use for input/output midi, by default no device is selected. Before starting pd, you should plug your midi hardware, otherwise it will not show up in this dialog. In this case, we have selected our hardware "USB MIDI 1x1" (a midi interface) and the rest of "devices" called IAC are internal midi buses in osX.
Note to OSX Users : In some cases with OSX you will need to check and activate the device in this "Audio midi setup" app. T his can be found inside the utilities folder as shown below.
240
Multiple Devices
Pd can use also multiple midi devices, so in the midi settings window (seen before), you can add more devices by clicking on the button "use multiple devices" and adding it in any free "port" (each one with the respective 16 channels...) You can also in pd "filter" the midi messages by specifying which channel/port we want to "hear" with an "argument" in the midi object. objects used to receive and send notes are [notein] and [noteout] respectively. Here is an "extract" of the help for [notein], the object we will use when we want to connect a midi keyboard (or any other midi device that generates notes!) to pd in order to play sounds or doing anything.
3-MIDI HARDWARE:
Since midi was developed in the 1980s you can find many devices compatibles with it that you can use with pd. T ypically you can find synthesizers, midi interfaces, midi controllers, midi hubs and of course, the symbolic midi cable. the cable its a DIN 5 pin cable with two male conectors. the midi conector in the devices its always female, it doesn t mater if its input or output so you have to take care when connecting the devices because its possible and easy to make a bad connection and then, your system will not work..
241
1- T o connect any midi keyboard to pd, you have to connect the "midi out" of the keyboard with the "midi in" of your midi interface.
A midi interface its a device that adds standard midi hardware ports to the computer, tipically via USB connection.
Note: T here are modern keyboards that have an USB/ midi interface integrated to transmit midi directly to the computer via USB cable. in this cases, you will not need the classic midi cable.
242
T his is the setup Midi keyboard-->midi interface-->computer. In the midi settings configuration, you have to select your midi interface as midi input. when you create an [notein] object in pd and you play notes in the keyboard, you will see which note/s you are playing, the velocity and the channel. Here, we can see that this keyboard is transmitting only in the channel 2. Usually you can change the transmitting channel of the keyboards by looking in his own configuration.
243
T his is the setup Pd-->midi interface-->hardware synthesizer. In this case, you need to select the midi interface as midi output device in the pd midi settings. In this case, was needed also to add (and bang) the message "2" into the right inlet of the object [noteout] because this roland synthesizer only listens channel 2. We know this because before we connected the keyboard as input in Pd and then, we could see that this machine works only on channel 2.
5- MIDI CONTROLLERS
When we want to control our pd patches with a midi controller we use the object [ctlin], this has 3 outlets, the left one outputs the controller value (0-127 ), the middle one outputs the controller number (cc) and the rightmost one outputs the channel and Port (channel "17 " in Pd means midi channel 1 in port 2). In this picture we can see the output of [ctlin] object when I move one encoder in the midi controller "BCF2000" connected to the port 2.
244
When you create the ctlin object without arguments, its listening to all ccs and to all channels. T his is useful as an analysis tool to know which cc and channel sends each fader/ knob of your controller. In some midi controllers, some faders send the same cc number than others but in other midi channel. T ipically, we add the arguments cc (control change) and channel/port to the ctlin object to make it "hear" only the cc and channel specified because usually midi controllers have many knobs, faders, etc.. so each fader/knob its going to make only its specific/s function/s that you choose.. When we analyze each fader/potentiometer/button/etc, we can create a specific ctlin message to listen only one thing, this is the way to do an abstraction to have all the ccs of our midi controller assigned to an individual output. T his is how it looks like my object "pd uc16", ready to receive the ccs from my cheap midi controller evolution uc-16. it also reports in a "bang" which output of the abstraction correesponds to each potentiometer.
245
246
STREAMING
59. STREAMING AUDIO 60. OGGCAST~
247
If all is installed well the object will look like the above. If there is a problem the object will be surrounded by dotted lines, this means that the object couldn't be created.
Now we have a mono input to mp3cast~ but we want a stereo connection, so we will connect the same signal outlet to right signal inlet of mp3cast~ :
3. SETTINGS
We now want to send our server details to the mp3cast object so first we need to create 4 empty messages boxes. Put them on your document like so:
248
Enter the following into these newly created message boxes. One should contain the following:
passwd
OK, so now we are ready to enter the details of our streaming server. In the passwd message box type a space after 'passwd' and enter your password. In this example the I will use the password 'hackme', and I would type this:
passwd hackme
So I get this:
T hen we enter the mountpoint in a similar fashion into the mountpoint message box . I will use the mountpoint live.mp3.
note : you do not need to enter the suffix ".mp3" in the mountpoint . We also wish to enter the hostname and port of the streaming server. I will use the non-existant ice.streamingsuitcase.com as the hostname and port 8000 :
249
note : do not put in the leading http:// in the hostname. Lastly, we have the icecast2 message box. T his defines what kind of server you are logging into. If you are using an Icecast1 server you would instead have icecast in this box. Similar for shoutcast . If you are streaming to a Darwin server use icecast . Connect all the control outlets from these message boxes to the left control inlet of the mp3cast~ object box. You may have to move the boxes around a bit to make space :
250
T he adc~ object takes the input from your computers sound input. adc is short for Analog Digital Converter . If you now stream the sound will be coming from your soundcard input!
6. DISCONNECT
Incidentally, if you need to disconnect the stream make a new message box , type:
disconnect
then connect this to the left control inlet of mp3cast~ , return to run mode and press it.
251
60. OGGCAST~
Oggcast is known as a Pure Data External, it is not part of the Pure Data 'native' packages. Oggcast was written by Olaf Matthes. Oggcast is a streaming object. It enables you to send audio encoded in ogg vorbis to an Icecast2 or JROAR streaming server. T his means you can send live audio through the internet or a local network from Pure Data , and one or more computers can pick it up from the streaming server, like so:
T his means you also need to have access to a streaming server. If you have not set one up before this might be tricky. You could also try borrowing some server time from someone. You will need to get the following details from the streaming server administrator to be able to stream to the server: Server address (hostname) of the server Port to stream on (usually 8000) Password Mount-name (the name of the stream you will create on the server)
PARAMETERS
All Parameters are listed here:
252
In the above example you would replace : localhost with the IP Number or hostname of your streaming server mystream.ogg with the mount point (name) of your stream 8000 with the servers port number (it is usually 8000 ) hackme with your servers password In the above patch you will need to first press the password message box while Pd is in run mode, and then press the connect message box.
253
Again, in the above example you would replace : localhost with the IP Number or hostname of your streaming server mystream.ogg with the mount point (name) of your stream 8000 with the servers port number (it is usually 8000 ) hackme with your servers password
Tips
changing the parameters of oggcast~ while streaming can cause the stream to drop out
254
LIST OF OBJECTS
61. OBJECT LIST 62. GLUE 63. MATH 64. TIME 65. MIDI 66. TABLES 67. MISC 68. AUDIO GLUE 69. AUDIO MATH 70. OSCILLATRORS AND TABLES 71. AUDIO FILTERS 72. AUDIO DELAY 73. SUB WINDOW 74. DATA TEMPLATES 75. GEM 76. PDP 77. PHYSICAL MODELLING 78. OBSOLETE 79. USING LADSPA PLUGINS
255
Dataflow
Glue - General dataflow control Math - Mathematical operations T ime - T ime-related operations Midi - Midi Input/Output T ables - T able and array management Misc - Objects that don't fit any previous category
Audio
Audio Glue - General audio control Audio Math - Mathematical operations Audio Oscillators and T ables- Audio generators and table readers Audio Filters - Filters and convolvers Audio Delay- T ime-related operations
Patch Management
Subwindows - Patch structuring Data T emplates and Accessing Data - Objects related to data structures
External libraries
GEM - OpenGL graphics and video library PDP - Video library to provide a way to use data packets as messages Physical Modelling - Physical modelling library Obsolete - Objects that for some reason became obsolete. Most of them are still available, but you should avoid using them.
256
ORGANISATION
Each chapter has a table with the following columns: Name - Name of the object Library/Path - name of the library to where it belongs (these libraries are stored in your pd/extra folder) Function - Short description given by the author Due to the decentralised development of Pure Data externals, it sometimes happens that some name clashes between objects happen - sometimes even for objects with very different functions! In case the object you saw from the list isn't the object you were thinking about, the easiest way to make sure you have the right object is to write its complete namespace: for example, if you want to use the [makesymbol] object from the zexy library, you can either write [makesymbol] or [zexy/makesymbol].
NAME
LIBRARY/PATH FUNCTION
257
GLUE
Vanilla Objects bang change float int makefilename moses pack print receive route select send spigot swap symbol trigger unpack until value Extended Objects a2l any2list -dsp dsp01 any active add2_comma add2_comma cyclone flatspace iemlib iemlib flatspace zexy jmmmp convert "anythings" to "lists" DSP switch store and recall any message (like f, or symbol) report if window is active / inactive add a comma after a message add a comma after a message lets only "allowed" send 'bang' message eliminate redundancy in a number stream store a floating point number store an integer format a string with a variable field part a stream of numbers combine several atoms into one message print messages to the terminal window receive messages without patch cords route messages according to their first element compare numbers or symbols send messages without patch cords pass or block messages swap two numbers, respecting right-toleft order store a symbol sequence messges in right-to-left order and convert data split a message into atoms looping mechanism nonlocal shared value (named variable)
258
allow alternate amplitude_n any_argument float_argument symbol_argument any2string string2any Append ascii->int float->ascii atoi bang-eater bangbang bfilt bfilt2 bondo bpe Bucket buddy button change_n choice
floats or symbols through alternate between two outlets return the amplitude covered by the last n values initiate internals
flatspace iemlib cyclone hcs flatspace zexy flatspace cyclone cxc flatspace cxc flatspace cyclone flatspace iemlib cyclone cyclone flatspace ggee la-kitchen vanilla/choice
cyclone list-abs la-kitchen cxc cyclone flatspace markex ekext flatspace cyclone
debounce mapping
la-kitchen
debounce_b
la-kitchen
converts ASCII strings to pd messages append a list to the incoming list convert a stream of ASCII digits to a single value convert ASCII to integer eat N bangs in every M bangs send a number of bangs in order modulo + select 0 bang filter synx a group of messages break point envelope pass numbers from outlet to outlet sync incoming data, output when all inlets received data a bang with a label returns 0 if the last n datas are the same search for a best match to an incoming list store and edit collections of messages test if two anythings are the same counts from 0 to n-1 counter -> NV counts the number of bangs received counts up send data to individual outlets blocks the value of incoming data for the further n samples after ech change blocks the input until a specified duration is
259
over output 1/0 randomly sent out 1/0 to a specific outlet replace initial argument, if it is zero demultiplex the input to the specified output blocks "denyed" floats or symbols extract values, contents, attributes from xml-tag structures split / joina range into two (0-1) send data to a list of receive objects receive parent initial arguments <list>, like a $n output 1 over n data unfolds a package to a sequence control audio, measure dsp load detect rising or falling edge in floats text entry box normal / positive / megative envelope follower linear and/or exponential increment counter, bang controlled counter with variable increment first in first out buffer for floats first in first out stack with priorities concatenate a list of float-fragment-strings to a 23 bit accurate mantissa incremental counter (triggered by internal metro) send remote messages transform symbol to numbers or messages and vice versa float to symbol tag data based on the
detox
jasch_lib
disjoin join dist dollarg downsample drip dsp dsp~ edge entry env env+ env-
mapping flatspace maxlib flatspace iemlib mapping flatspace zexy iemlib flatspace maxlib flatspace mapping
exp_inc
flatspace iemlib
f+ fifo fifop
float24
flatspace iemlib
260
hid_one2twohid_one2threehid_one2four hid hysteresis iem_anything iem_append iem_i_route iem_prepend iem_receive iem_r iem_send iem_s iem_route iem_sel_any mapping iemlib iemlib flatspace iemlib iemlib iemlib flatspace iemlib flatspace iemlib
tag data based on the inlet it arrived in send data out the specified output click and drag to get pixel values glue together 2 packates (append, prepend, ...) intercept the output of another object one-to-x mapping object add hysteresis to input data latch for anything append a message to any messages variation of route (abbr. iiroute) prepend a message to any messages receive object with changeable receive label improvement of route control a messagebox with multiple content lets information through only when it was present at input longer than N ms create a symbol->int map initialize a message via loadbang (abbr. ii) queues up lists of pitches and attack points split a list into a series of numbers print without identifier
ignore
flatspace maxlib
index init iso iter ixprint k_receive k_send kalashnikov uzi knob last_n last-x lbang length
flatspace zexy
send a specified number of bangs as fast as possible save the n last incoming datas into a list make a list of the last x floats loadbang which can be triggered more often get the length of a list
261
lifo lifop line3 list-abs list-apply list-clip list-compare list-delete list-drip list-drip2 list-dripslow list-enumerate
flatspace maxlib flatspace zexy flatspace list-abs list-abs list-abs list-abs list-abs list-abs list-abs list-abs list-abs
list-find list-idx list-insert list-l2s list-lastx list-len list-lifo list-makefilename list-map list-map2
list-abs list-abs list-abs list-abs list-abs list-abs list-abs list-abs list-abs list-abs
last in first out buffer for floats last-in-first-out stack with priorities line with 3rd order polynome apply abs() on floats of a list apply the object created by [arg1 arg2] on every list element clip for lists compare two lists element by element delete element at a position drips or serializes a list drips two lists in sync (as long as 1st list lasts) serialize a list on demand serialize a list and put numbers in front of each element build a list from incoming lists and output stored list first in, first out returns a sequence of items for which the adjusted operation is true find positions of a value in a list get element at position idx insert LIST before ELEMENT at position POS in original list concatenate a list into a single symbol make a list of the last x floats calculate lenght of a list last in, first out change symbols in a list, floats pass unchanged swiss army knife of list operations map an operation on element pairs from two lists
262
list-moses list-onearg
list-abs list-abs
list-reduce
list-abs
list-replace list-rev list-rot list-seek list-sieve list-splat list2int l2i list2send list2symbol l2s symbol2list s2l lister l listfifo listfunnel
list-abs list-abs list-abs list-abs list-abs list-abs flatspace zexy flatspace iemlib flatspace zexy flatspace zexy flatspace maxlib flatspace maxlib
listmoses
ekext flatspace
listto
mapping
local_max local_min
mapping
mergefilename
flatspace iemlib
modulo_counter
flatspace iemlib
like moses for lists list with optional aegument list goes element per element through a user-defined operation replace (overwrite) a list from position POS with a new list reverse a list's order rotate a list walk through a list element by element look up ocorrence of incoming floats in a list advanced list-split with negative indexes cast all floats of a list to integers convert some kind of lists to a sent message convert a list <-> symbol stores a list first in first out buffer for lists send values out as list with source index splits two lists according to the values contained within the 1st list separate a list into a stream of atoms give the value of every local maximum / minimum whenever there is a change in direction write data to the parallel port concatenate lists to formatted symbols exclusive-OR mask map look for a series of numbers and output as a list merge a list of symbols and floats to a symbol increments counternumber from 0 to max-1 by a bang
263
multiplex mux multiselect multisel nchange next niagara nop nroute once onebang oneshot OSCprepend packel parentdollarzero parent$ 0 pique polymap polystat
multiplex the selected inlet to the outlet select object which accepts a list in the right inlet a "new" [change] try to separate messages into logical parts divide a package into 2 subpackages no operation rout if Nth element is matched only the first message passes through traffic control for bang messages blocks after initial bang prepends first argument to an OSC message list get the nth element of a package receives the parent $ 0 symbol find peaks in an FFT spectrum two-dimensional polyphony-restricted map outputs statitics about voice usage before an incoming message be released to an outlet, a message of 2 items will be sent prepend a message with another message list prefixer list prefixer -> NV prepends a message + selector symbol an identifier shortcut for [list prepend]-[list trim] pulse width modulation at message rate automatic naming for a record / playback machine like r and s, with set messages
flatspace maxlib iemlib cyclone flatspace markex list-abs flatspace zexy iemlib flatspace ekext ekext
pre_inlet
flatspace iemlib
list-abs hcs
264
receive2list
iemlib
segregate sendlocal sl receivelocal rl serialize sguigot sieve simile slider sliderh sort soundfile_info speedlim maxlib_speedlim spell split maxlib_split split_my_msgs split_path split3 splitfilename spray sprinkler sprintf ggee cxc flatspace ggee jmmmp ekext ekext flatspace ggee flatspace zexy flatspace iemlib cyclone iemlib cyclone cyclone iemlib hcs flatspace hcs iemlib flatspace iemlib cyclone flatspace cyclone
convert received message to a list message and then the incoming message output only most recent messages relay messages according to their first element send data to any receive object (re)pack atoms to packages of a given size repeat a message several times displays and scrolls a text in a patch window segregate the input to various outlets, depending on the type send messages locally per canvas turn a stream of floats into a list spigot with GUI takes integers and maps them to floats compare two numbers according to an error window slider from ggee shell-sort a list of floats show the header data of a wav file speed limit for incoming messages convert input to ascii values look for a range of numbers split a strem of messages like splitfilename part a numeric stream into 3 ways split into path and filename distribute an integer to a numbered outlet dynamic control message dissemination format a message of strings and numbers
265
strings and numbers sroute state strcat strcmp stripfilename strippath subst list-abs flatspace ggee markex flatspace zexy flatspace iemlib ext13 flatspace flatspace motex settable route saves settings in a patch to a file prepends its text to any symbol that is sent to it compare 2 lists as if they were strings strip the first or last characters of a symbol strip a path from a filename self-similar substitution/diminution of rows substitue a symbol for another symbol in a message output a message from a specific inlet extended trigger object based on sync from jMax time-tagged trigger break point envelope print all combinations of length 2 without repetition output number of input changes in N ms combine numbers into a list that are received close together toggle from ggee measure "tilt" of input bang that routes messages through report zero / nonzero transitions control a messagebox with multiple content (abbr. tm) transforms a slider range send a message to all instances of the same class in this patch (and subatches if desired) merges all inputs into one output and prepend an identifier convert a symbol to a anything selector unpack which sends unused symbols to the last outlet
substitute switch sync t3_bpe take-two temperature thresh ticker tilt toddle T ogEdge toggle_mess transf_fader
cyclone cyclone flatspace motex flatspace iemlib list-abs flatspace maxlib cyclone flatspace ggee flatspace maxlib ggee cyclone flatspace iemlib flatspace iemlib
universal
cyclone
266
Uzi xerox zl
cyclone
send a specified number of bangs as fast as possible multi purpose list processing object
cyclone
NAME
LIBRARY/PATH FUNCTION
267
MATH
Vanilla Objects & | << >> && || % + - * / pow > >= = <= < clip max min mod div sin cos tan atan atan2 exp log abs sqrt pow mtof ftom dbtorms rmstodb dbtopow powtodb random wrap Extended Objects runden set numbers behind the comma scalar multiplication of vectors (=lists of floats) takes the inverse of the input delivers a number that is "about" the same as the input number store, add to, and multiply a number arc functions generates a histogram of number pairs received logical operators arithmetic relational operators force a number into a range greater or lesser of 2 numbers higher math convert acoustical units pseudorandom integer generator wrap a number to range [0,1]
1/x inv
flatspace ggee
about
flatspace mjlib
attract1 base base3 gingerbreadman henon hopalong ikeda latoocarfian latoomutalpha latoomutbeta flatspace latoomutgamma lorenz martin popcorn quadruptwo rossler standardmap autocal la-kitchen
attractors
268
autoscale
hcs mapping
average gem-average
flatspace markex
scales a stream of numbers with dynamic input range average together a series of numbers random numbers distribution curves the input range with a double-linear interpolator with 2 control parameters generate / decode a bitmask byte from 8 inlets store and edit numbers convert cartesian coordinates to polar convert cartesian coordinates to spheric cartesian to polar conversion return the last locals minimum and maximum values convert 0-1 data into a center point with two 0-1 ranges curves the input range with a double-circular seat with 1 control parameter limit numbers to a range correlation of 2 different streams hyperbolic functions curves the input range with cubic curves curves the input
beta bilex cauchy expo gauss linear poisson triang flatspace maxlib weibull
breakpoint breakpoint_smooth
mapping
bytemask debytemask
mapping
capture
cyclone
cart2pol
cart2sph
cyclone
la-kitchen
center_point
mapping
mapping
cyclone
269
curve
mapping
range maps the input range to an exponential / logaritmic curve 3rd order polygone for natural fade maps the input range to an arbitrary curve db to rms conversion convert midi-db to fader scale conversion [hid]range to degrees convert degree to radiant converts mapping degrees calculate 1st or 2nd order difference diferentiate the input distance from a point and a stream (normal, 2d, Nd) like "/" but calculates result when second inlet is changed calculates division and modulo output random numbers in a moving range curves the input range with 2 ellipses curves the input range with a doubleexponential seat expression evaluation converts frequency to notes + cents fader scale to rms finite field polynomial
curve_exp curve_log
mapping
curve_fade
mapping
curve_graph db2v v2db dbtofad fadtodb deg2hid hid2deg deg2rad degrees->mapping mapping->degrees delta diff_n distance distance2d distance_n
mapping
mapping
divide
flatspace maxlib
divmod
flatspace maxlib
drunk elliptic elliptic_seat elliptic_sigmoid exponential_curve exponential_seat exponential_sigmoid expr f2note fadtorms rmstofad ffpoly
cyclone
mapping
mapping
27 0
hid_average hid_smooth
hid
hid_centered
hid
hid_graph
hid
hid_invert
hid
hid_lowpass
hid
filters fir filter with coefficient list fir high / lowpass filter with order n store x,y pairs of numbers together tangent warp frequency generate gaussian curve smooths a stream of numbers through weighted averaging convert 0-1 to -11 maps the input range to the chosen curve draw an arbitrary curve, which is applied to the input range inverts the stream of numbers smooths a stream of numbers through audio conversion + lowpass filtering converts cartesian to polar coordinates converts cartesian to spiral in polar coordinates conversion [hid]range to radians generates a histogram of the received numbers calculates the average of the items (floats) that came in within the last N miliseconds iir high / low-
hid_polar
hid
hid_spiral
hid
hid2rad rad2hid
hid
Histo
cyclone
history
flatspace maxlib
iir_hip iir_lop
la-kitchen
27 1
list-centroid
list-abs
list-dotprod
list-abs
list-emath
list-abs
list-equalize
list-abs
list-geometric-mean
list-abs
list-harmonic-mean
list-abs
list-inter
list-abs
list-inter-many
list-abs
list-invint
list-abs
list-math
list-abs
pass filter non-zero numbers to 0, 0 to 1 limits input to lie between boundaries add all floats in a list add two lists element by element calculates the centroid of a mass of a floatlist dot-product of two float-lists do math on float-lists element by element scale a float-list so that all float elements sum up to 1 calculate the geometric mean of a float-list calculate the harmonic mean of a float-list elementwise linear interpolation between two float-lists elementwise linear interpolation between several internally-stored float-lists inverse intervals of a float-list simple mathematical operations on lists calculates the arithmetical mean of a floatlist find minimum and maximum in a float-list multiply two float-lists
list-mean
list-abs
list-minmax list-mult
list-abs list-abs
27 2
list-normalize
list-abs
list-round
list-abs
list-sub
list-abs
list-unitvec
list-abs
max_n min_n
la-kitchen
maximum
cyclone
mean
cyclone
mean
flatspace zexy
minimum
cyclone
minmax
flatspace zexy
minus
flatspace maxlib
normalizes a float-list round all numbers in a float-list to a nearest multiple subtract two float-lists element by element normalize a float-list geometrically curves the input range with a doubleexponential seat z=z*z+c moving average filter return the maximum / minimum from the last n values output the greatest in a list of numbers find the running average of a stream of numbers get the mean value of a list of floats output the smallest in a list of numbers get minimum and maximum of a list of floats like "- but calculates result when leftmost or second inlet is changed cellular automata object converts MIDI note value to samplerate like "*" but calculates result when leftmost or second inlet is changed note to midi scales a stream of numbers to
mlife mtosr
multi
flatspace maxlib
n2m
flatspace mjlib
27 3
notescale
hid
offer
cyclone
one_n
la-kitchen
past
cyclone
of numbers to MIDI note numbers store x, y pairs of values (x is int only) returns 1 if the last n datas were non-zeros report when the input decreases beyond a certain number output only numbers greater than the previous value of pi as accurate as Pd can manage like "+" but calculates result when leftmost or second inlet is changed convert polar coordinates to cartesian convert polar coordinates to spheric prime number detector convert radiant to degree floating point random number like [scale] multiply by 2^k so result is 1<=r<2 (transposer) wraps floats back and forth into a range rms to fader characteristic round numbers near zero to zero scale input from a certain input range to lie between output boundaries returns 1 if the difference between the current sample
Peak
cyclone
pi
hcs
plus
flatspace maxlib
pol2cart
pol2sph prime rad2deg randomF randF range ratio flatspace markex deprecated flatspace creb flatspace flatspace zexy
flatspace maxlib
flatspace iemlib
scale
27 4
seuil_n
la-kitchen
shuffle
flatspace motex
sph2cart
sph2pol
steady
ekext flatspace
sum
flatspace zexy
T hrough
cyclone
current sample and the sample n before is up to the threshold value no-repeat random number generator convert spheric coordinates to cartesian convert spheric coordinates to polar takes stream of numbers, outputs max, min, through sum the elements of a list output only numbers smaller than the previous interpolate linearly between two points three random numbers v* v/ math on a list of numbers wrap the float input between to boundaries wraparound returns 1 if the last n datas were 0 scale von pdjimmies
NAME
LIBRARY/PATH FUNCTION
27 5
TIME
Vanilla Objects cputime delay line metro pipe realtime timer Extended Objects bpm clock help clock date exciter ISOdate ISOtime hcs linedrive metroplus metrum monorhythm cyclone flatspace mjlib jmmmp flatspace mjlib jmmmp flatspace zexy calculate meanvalue of times between clicks show (simple) clock timeconvert shows conversion of hertz, milliseconds, bpm, ... chronometer with display in secs get system date controls a list of bang events scheduled in time output current date / time in ISO format scale numbers exponentially to use with line~ allows complex timing bangs to be delivered metro with GUI basic rhythm pattern building blocks that allows polyrhthms to be generated quickly and easily weighted series of random numbers a better metro output sequence of numbers (similar to "line") chronometer with 2 layers time tagged trigger delay time tagged trigger metronom time tagged trigger timer get system time send out bangs at given times of day line object for 3 values shows the time rng without duplicate numbers output seconds since epoch measure CPU time bang after time delay ramp generator send bang periodically ala metronome delay a message a message delay line ask operating system for elapsed real time measure logical time
prob pulse step stoppuhr t3_delay t3_metro t3_timer time timebang tripleLine uhr urn utime
cyclone flatspace motex flatspace maxlib jmmmp flatspace iemlib flatspace iemlib flatspace iemlib flatspace zexy flatspace maxlib flatspace markex jmmmp cyclone flatspace cxc flatspace
27 6
utime velocity
NAME
LIBRARY/PATH FUNCTION
27 7
MIDI
Vanilla Objects makenote notein ctlin pgmin bendin touchin polytouchin midiin sysexin noteout ctlout pgmout bendout touchout polytouchout midiout stripnote Extended Objects beat Borax borax chord flush gestalt m-i midiflush midiformat midiparse mk pitch rhythm flatspace maxlib cyclone flatspace maxlib flatspace maxlib cyclone flatspace maxlib jmmmp cyclone cyclone jmmmp flatspace maxlib flatspace maxlib beat tracker reports current info on note on/off analyse incoming midi notes tries to detect chords provide note offs for held notes gestalt detection for monophonic melodies automatic conversion of MIDI controller send note offs for all hanging notes in a raw midi state de/construct midi messages fast visual control of MIDI inputs get info about pitch detects the beat of rhythmic patterns score follower that tries to match incoming MIDI data to a score stored in an array hold note offs and output them on request extra precision midi pitchbend objects (14 bit) interpret midi messages with release velocity send note-on messages and schedule note-off for later MIDI input
MIDI output
score
flatspace maxlib
NAME
LIBRARY/PATH FUNCTION
27 8
TABLES
Vanilla Objects tabread tabread4 tabwrite soundfiler Extended Objects arraycopy arraysize envgen pianoroll tabdump tabminmax tabset flatspace maxlib flatspace flatspace ggee flatspace zexy flatspace zexy flatspace zexy copy data from one array to another returns the size of an array envelope generator graphical sequencer controller dump the contents of a table as a list get minimum and maximum of a table set a table with a list of floats overlap add tabread clone read numbers from a table read numbers from a table with 4-point interpolation write numbers to a table read and write soundfiles to arrays
NAME
LIBRARY/PATH FUNCTION
27 9
MISC
Vanilla Objects loadbang serial netsend netreceive qlist textfile openpanel savepanel bag poly key keyup keyname declare Extended Objects hid hcs classpath import parazit hcs hcs gnd send bang automatically when patch loads serial device control for NT only send Pd messages over a network listen for incoming messages from network text-based sequencer read and write textfiles open dialog save as dialog collection of numbers MIDI-style polyphonic voice allocator numeric key values from keyboard symbolic key name set search path and/or load libraries HID protocoll reader returns each path in the global classpath loads libraries from the path to local namespace a patch for disrupting other patches using internal messages simple client that connects to netserver or to pd's native netreceive object distribute data to several netreceive ? report of netsend connections? netclient sends value of an environment variable argument on bang initialize anything by loadbang parameter-bank with csvsyntax read and write messages into text files get the current OS a hierarchical storage strips all leading directories
netclient netdist netrec netserver getenv init ii grid iem_pbank_csv mapper msgfile
flatspace maxlib flatspace maxlib flatspace maxlib flatspace maxlib flatspace motex flatspace iemlib
flatspace iemlib
flatspace zexy
280
stripdir system vbap wintablet ENV proc comment mousefilter MouseState linuxevent linuxmouse filesize fsize wavinfo beatpipe comport folder_list getdir ifeel image openpatch opa popen popup shell failsafe
from a path send a system message to the console vector based amplitude panning external external for using Wacom tablets on Windows get and set environment variables interface to the linux proc filesystem text comment with some formatting options, meant to be Max/MSP compatible passes numbers only when mousebutton is up report mouse x/y/deltax/y and buttonpress outputs raw events from the linux event system takes events directly from a linux event device gives size of a file get samples, channels, bitspersample, amplerate of a file event scheduler / quantizer serial port interface listing of files based on a wildcard pattern get the directory this patch is operating in control the pulse of an iFeel mouse incorporate images open a patch file shell commands popup menu run commands in a UNIX shell turns off dsp and / or quits pd find the file type of a file convert group name <-> GID fetch password data based on a UID or group name fetch password data based on a UID or username gets information about files convert group name <-> GID version of the currently
cxc flatspace cxc flatspace cyclone cyclone cyclone deprecated flatspace deprecated flatspace ext13 flatspace ext13 flatspace flatspace flatspace flatspace hcs flatspace ggee flatspace hcs flatspace ggee flatspace flatspace flatspace iemlib flatspace ggee hcs
281
version joystick keyboard keygate mouse datei-l datei-o datei-r datei-w pd-colors gui-edit oscD oscS tastin keybang keytoggle keyupdown
hcs hid hid hid mapping hid jmmmp jmmmp jmmmp jmmmp jmmmp jmmmp jmmmp jmmmp keyboardkeys keyboardkeys keyboardkeys
version of the currently running Pd use a joystick device with Pd use a keyboard device with Pd simple keyboardcontrolled gate use a mouse device with Pd send the message open ... send the message read ... send the message write ... T cl/T k and data structure's color palettes GUI-editor abstraction counts received OSC messages interface for [sendOSC] gate for keyboard input key bang GUI key toggle GUI increase/decrease of any value GUI
NAME
LIBRARY/PATH FUNCTION
282
AUDIO GLUE
Vanilla Objects adc~ dac~ bang~ block~ switch~ catch~ throw~ line~ vline~ threshold~ snapshot~ vsnapshot~ samplerate~ readsf~ receive~ send~ writesf~ sig~ Extended Objects blockmirror~ flatspace zexy play back a signalvector in a timereversed way swap the upper and lower half of a signal-vector sound editor frequency detector that counts zerocrossings like env~, but outputting rms instead of dB fade-in fade-out shaper (need line~) current blocksize of a window samplerate of a window in Hertz split signal float to integer and fractal part audio input audio output output bang after each DSP cycle specify block size and overlap switch DSP on and off summing signal bus and non-local connection audio ramp generator high-precision audio ramp generator trigger from audio signal convert a signal to a number on demand deluxe snapshot~ get the sample rate read a soundfile one-to-many nonlocal signal connections write audio signals to a soundfile convert numbers to audio signal
flatspace zexy
flatspace zexy
283
Line~ mp3play~ pack~ unpack~ oggamp~ oggcast~ oggread~ oggwrite~ ogglive~ patcher~ pdf~ peakenv~ polygate~ prvu~ pvu~ rvu~ rlshift~ Scope~ sfplay sfrecord sfread~ sfwrite~ sigzero~ spigot~ tavg~ t3_sig~ t3_line~ bthresher~
cyclone flatspace iemlib flatspace zexy flatspace pdogg flatspace pdogg flatspace pdogg flatspace pdogg
line~ with lists and bang in the end mpeg layer III player convert signals to float-packages streaming client stream to IceCast2 or JRoar file player strean to file 16x16 patchbay inspired by Synthi AKS
flatspace zexy flatspace iemlib flatspace motex flatspace iemlib flatspace iemlib flatspace iemlib
probability density function signal-peakenvelope switch between multiple signal inputs peak- rms- vumeter peak- vu-meter rms- vu-meter shift signal vector elements left or right play back/record (multichannel) soundfiles <- NICHT VERWENDEN NICHT VERWENDEN detects whether there is signal or not signal router arithmetic mean of a signal between two bangs time tagged trigger sig~ time tagged trigger line~ similar to thresher~ but with more control an amplitude/frequency sensitive gating object signal to float converter
thresher~
iemlib
284
xplay~ zerocross~ count~ record~ simile~ zeroxpos~ piperead~ pipewrite~ cyclone cyclone ekext flatspace ekext flatspace ext13 flatspace noise detector, counts zero crossings of signal sample counter read and write sample values compare two signals according to an error window find n-th zero crossing in frame like sfread and write, but nonblocking like catch~ and throw~, with set messages like r and s, with set messages streaming client blocksize in ms pulse width modulation at audio rate mono/stereo level meter with amplitude control snapshot~ GUI implementation
throw13~ t13~ catch13~ flatspace [ext13] c13~ receive13~ send13~ streamin~ streamout~ blocksize_in_ms pwm~ mat~ met~ maat~ meet~ snaps~ flatspace [ext13] flatspace ggee hcs hcs
jmmmp jmmmp
NAME
LIBRARY/PATH FUNCTION
285
AUDIO MATH
Vanilla Objects +~ -~ *~ /~ max~ min~ clip~ q8_rsqrt~ q8_sqrt~ wrap~ fft~ ifft~ rfft~ rifft~ framp~ mtof~ ftom~ rmstodb~ dbtorms~ rmstopow~ powtorms~ pow~ log~ exp~ abs~ Extended Objects # >~, <~, ==~, &&~, ||~ abs~ absgn~ addl~ amp~ atan2~ avg~ Clip~ divl~ exp~ log~ expr~ fexpr~ ln~ m2f~ mull~ multiline~ vanilla flatspace motex flatspace iemlib iemlib flatspace zexy cyclone flatspace markex zexy flatspace zexy iemlib hcs cyclone flatspace ggee cyclone flatspace zexy cyclone iemlib operators on audio signals maximum or minimum of 2 inputs restrict a signal to lie between two limits signal reciprocal square root signal square root remainder modulo 1 forward and inverse complex FFT forward and inverse real FFT estimate frequency and amplitude of FFT components conversions for audio signals math logical operators absolute value of a signal absolute value + signum signal addition with line~ smooth amplitude control get the phase from a imaginary value of the fft arithmetic mean of 1 signal-vector limit numbers to a range signal divison with line~ signal math expression evaluation log~ convert MIDI pitch to frequency (obsolete) signal multiplication with line~ line~d multiplication of multiple signals
286
inverse of rec2pol~ convert rectangular coordinates to polar round signal float to nearest integer signum of a signal calculate phase difference between 2 sine-waves, in samples signal subtraction with line~ convert numbers to signal with sample accuracy reordered fft convert signal to binary vector normalize a (set of) dsp block(s) (i.e. for spectral processing) discrete wavelet transform discrete inverse wavelet transform difference between this and last sample arc functions
subl~ t3_sig~ bfft~ bitsplit~ blocknorm~ dwt~ idwt~ delta~ acos~ asin~atan~ acosh~ asinh~ atanh~ average~ cosh~ sinh~ tanh~ cosx~ sinx~ tanx~ log~ cartopol~ poltocar~ pow~ framescore~ framespect~ hssc~ mandelbrot~ bwin~ bmax~ irreg~
iemlib
creb flatspace creb creb creb flatspace creb flatspace cxc cyclone flatspace cyclone cyclone cyclone cyclone cyclone cyclone cyclone cyclone cyclone cyclone ekext flatspace ekext flatspace ext13 flatspace flatspace flib flib
hyperbolic functions
cartesian to polar conversion calculates weighted similarity value for 2 signal vectors highest significant spectral component z=z*z+c multiplies a signal block with a window gives block max irregularity creates a mel spaced filterbank to generate mel frequency cepstral coefficients get amplitude or power spectrum from fft
melf~
flib
mspec~
flib
287
from fft get spectral peaks from magnitudes / estimate frequency get phase spectrum from fft spectral centroid spectral flatness measure spectral smoothness tristimulus x, y, z
NAME
LIBRARY/PATH FUNCTION
288
tabreceive~ Extended Objects agogo~ bamboo~ blotar~ bonk~ bowed~ bowedbar~ brass~ buzz~ cabasa~ cavoc~ cavoc27 ~ chase~ clarinet~ dcblock~ dirac~ escalator~ fiddle~ vanilla flatspace zexy vanilla/bonk~
subctractive synthesis without filters An 8 rule cellular automata that generates spectra A 27 rule cellular automata object uses a sync signal to determine who gets out which outlet blocks DC components in audio signals produces a unit:sample:sequence pitch estimator and sinusoidal peak finder
289
flute~ formant~ gq~ guiro~ LFO_noise~ loop~ lrshift~ mandolin~ marimba~ morse munger~ flatspace mjlib flatspace iemlib extra flatspace loop~ flatspace lrshift~
formant synthesis equalizer with variable number of filter banks 2-point-interpolated time-stretched white noise phase generator for looping samples shift signal vector elements left or right
noish~ noisi~
flatspace zexy
convert text to morse code granular sampling instrument draws a random number every n samples and interpolates between pink noise (-3dB per octave) a squarewave generator examples of sinesum sleigh bell unit:step sequence or a rectangle:window another phase generator for sample looping implements synchronous granular synthesis choose noise, osc, phasor by clicking dynamic wavetable: use a signal block as wavetable circulant lossless signal junction smallband oscillator (i.e. for formant synthesis) a stabilized scroll
paf~ 0.06 pink~ plucked~ rechteck~ scrub~ sinesum sleigh~ step~ flatspace zexy cyclone iemlib
susloop~
bsaylor flatspace
syncgrain~ vibraphone~ testsig~ dynwav~ junction~ sbosc~ creb flatspace creb flatspace creb
290
grid chaotic oscillator sample playback without interpolation transfer funcion lookup table read and write sample values position based sample playback bandlimited random noise variable size wavetable ambisonic rotation ambisonic encoding / decoding ambisonic binaural encoding / decoding
ambi_rot iem_ambi ambi_encode ambi_decode ambi_decode3 iem_ambi ambi_decode_cube bin_ambi_reduced_decode_fft2 iem_bin_ambi bin_ambi_reduced_decode_2
NAME
LIBRARY/PATH FUNCTION
291
AUDIO FILTERS
Vanilla Objects env~ vcf~ noise~ hip~ lop~ bp~ biquad~ samphold~ print~ rpole~ rzero~ rzero_rev~ cpole~ czero~ envelope follower voltage-controlled bandpass filter uniformly distributed white noise one-pole high pass filter one-pole low pass filter bandpass filter 2-pole-2-zero filter sample and hold unit print out raw values of a signal real one-pole (recursive) filter, raw real one-zero (nonrecursive) filter, raw real one-zero (nonrecursive) reverse filter, raw complex one-pole (recursive) filter, raw complex one-zero (non-recursive) filter, raw complex one-zero (non-recursive) reverse filter, raw
czero_rev~ Extended Objects bandpass equalizer highpass highshelf hlshelf lowpass lowshelf notch 1p1z aenv~ allpass~ ap1~ ap2~ bpq2~ bp2~ bpw2~ bsq2~ bsw2~ burrow~
flatspace ggee
coefficients for biquad~ control IIR filter 1. order asymptotic ADSR envelope generator allpass filter allpass 1. / 2. order bandpass 2.order with Q inlet bandpass 2.order with bandwidth inlet bandstop 2.order (notch) with Q inlet bandstop 2.order (notch) with bandwidth inlet a cross-referenced filtering object a spectral modulation
292
centerring~ codepend~ comb~ complex compressor~ complex-mod~ convol~ crossx~ cverb~ dentist~ disarrain~ disarray~ drown~ enveloper~ ether~ vanilla cyclone
a spectral modulation object a classic block convolution object comb filter mod~ frequency shifter audio compressor frequency shifter convobrosfilter a cross synthesis object with gating implementation of the Csound reverb a partial knockout object an interpolating version of disarray~ a spectral redistribution object a noise reduction (or increase) object the (old? ? ? ) envelope generator of iemlib another spectral compositing object multiple object for all useful IIR-filters 1. and 2. order like lowpass, highpass, bandpass, bandstop, allpass, etc outputs the frequence response against a set of band pass filters a hard filtering of low(soft) frequencies filtering by drawing with mouse in array convolve a signal with an array Schroeder/Moorer reverb model phase quadrature of input for complex modulation high-mid-low-shelving filter highpass 1. / 2. order highpass 2.3.4.5.6.7 .8.9.10.order with butterworth characteristic highpass 2.3.4.5.6.7 .8.9.10.order with chebyshev
filter~
flatspace iemlib
filterbank~
filtersme1~ filtersme2~ FIR~ freeverb~ hilbert~ hml_shelf~ flatspace iemlib freeverb vanilla flatspace iemlib
hp1~ hp2~ iemlib hp2_butt~ hp3_butt~ hp4_butt~ hp5_butt~ hp6_butt~ hp7 _butt~ iemlib hp8_butt~ hp9_butt~ hp10_butt hp2_cheb~ hp3_cheb~ hp4_cheb~ hp5_cheb~ hp6_cheb~ hp7 _cheb~ iemlib
293
hp8_cheb~ hp9_cheb~ hp10_cheb~ hp2_bess~ hp3_bess~ hp4_bess~ hp5_bess~ hp6_bess~ hp7 _bess~ iemlib hp8_bess~ hp9_bess~ hp10_bess~ hp2_crit~ hp3_crit~ hp4_crit~ hp5_crit~ hp6_crit~ hp7 _crit~ iemlib hp8_crit~ hp9_crit~ hp10_crit~ leaker~ limiter~ lp1~ lp2~ lp1_t~ lp2_butt~ lp3_butt~ lp4_butt~ lp5_butt~ lp6_butt~ lp7 _butt~ lp8_butt~ lp9_butt~ lp10_butt~ lp2_cheb~ lp3_cheb~ lp4_cheb~ lp5_cheb~ lp6_cheb~ lp7 _cheb~ lp8_cheb~ lp9_cheb~ lp10_cheb~ lp2_bess~ lp3_bess~ lp4_bess~ lp5_bess~ lp6_bess~ lp7 _bess~ lp8_bess~ lp9_bess~ lp10_bess~ lp2_crit~ lp3_crit~ lp4_crit~ lp5_crit~ lp6_crit~ lp7 _crit~ lp8_crit~ lp9_crit~ lp10_crit~ maverage~ mindwarp~ moog~ morphine~ multiverb~ multyq~ pan~ flatspace ggee flatspace zexy iemlib flatspace iemlib
with chebyshev characteristic highpass 2.3.4.5.6.7 .8.9.10.order with bessel characteristic highpass 2.3.4.5.6.7 .8.9.10.order with critical damping a sieve based cross fader a limiter/compressor module lowpass 1. / 2. order lowpass 1.order with time_constant inlet lowpass 2.3.4.5.6.7 .8.9.10.order with butterworth characteristic lowpass 2.3.4.5.6.7 .8.9.10.order with chebyshev characteristic lowpass 2.3.4.5.6.7 .8.9.10.order with bessel characteristic lowpass 2.3.4.5.6.7 .8.9.10.order with critical damping moving average filter with IIR a spectral formant warping object signal controlled "moog" resonant lowpass a morphing object Schroeder/Moorer reverb model a four band filter equal power stereo panning same as above but takes a signal modulator rather than a float parametril bandpass 2. order
iemlib
iemlib
iemlib
iemlib
pansig~
flatspace motex
para_bp2~
flatspace iemlib
294
pin~
flatspace mjlib
pitchnoise~ presidency~ pvgrain~ pvharm~ pvoc~ pvtuner~ pvwarp~ reanimator~ resent~ residency~ scrape~ shapee~ swinger~ taint~ vacancy~ xsyn~ pvcompand~
randomly delivers the input signal to either the right or left outlet with a given probability Harmonic/inharmonic monophonic timbre separator a spectral sampler with pitch control a spectrum analyzer for granular resynthesis a harmonizer an additive synthesis phase vocoder a spectrum quantizer for tuning to arbitrary scales a non-linear frequency warper an audio texture mapper similar to residency~ but with independent bin control a spectral sampler useful for time scaling a noise reduction (or increase) object with frequency control a frequency shaping object a phase swapping object a cross synthesis object a spectral compositing object a cross synthesis with compression object a spectral compressor/expander object quantize a signal with a variable stepnumber moving average filter kernel fft stuff, needed as abstraction for some other patches fft stuff, as above (ggee) parametrical bandpass ? ? ? resonance bandpass
295
rbpq2~ rbpw2~ reccombfilter~ rev1~ rev2~ rev3~ schroeder~ swap~ svf~ vcf_hp2~ vcf_hp4~ vcf_hp6~ vcf_hp8~ vcf_lp2~ vcf_lp4~ vcf_lp6~ vcf_lp8~ vcf_bp2~ vcf_bp4~ vcf_bp6~ vcf_bp8~
iemlib iemlib
resonance bandpass 2.order with Q inlet resonance bandpass 2.order with bandwidth inlet rough combfilter feedback series of allpass with exponentially growing delay lines simple 1-in, 4-out reverberator hard-core, 2-in, 4-out reverberator schroeder reverb byte-swap a 16bit signal state-variable filter highpass 2.4.6.8.order with freq and Q signal inlets lowpass 2.4.6.8.order with freq and Q signal inlets bandpass 2.4.6.8.order with freq and Q signal inlets resonance bandpass 2.4.6.8.order with freq and Q signal inlets block diagonal state space system (spectral processor) chebyshev polynomial waveshaper dist~ waveshaper exp. attack decay sustain release exp. attack decay exp. attack release lattice~ filter random permute a signal block multiply 2 quaternion signals normalize a quaternion signal (or any 4 channel sig) a reso filter (4pole, 3pole) coupled frequency modulation interpolating reson filter
iemlib
iemlib
bdiag~ cheby~ dist~ eadsr~ ead~ ear~ lattice~ permut~ qmult~ qnorm~ resofilt~ xfm~ reson~
creb flatspace creb flatspace creb flatspace creb flatspace creb flatspace creb flatspace creb flatspace creb flatspace creb flatspace creb flatspace creb creb flatspace cxc cyclone flatspace markex
296
modification of pan~ estimates wether a frame of speech is voiced or unvoiced big fun with spoken words or beats allpass 1. / 2. order for filter cascades highpass 1. / 2. order for filter cascades lowpass 1. / 2. order for filter cascades
NAME
LIBRARY/PATH FUNCTION
297
AUDIO DELAY
Vanilla Objects delwrite~ delread~ writes a signal in a delay line read a signal from a delay line reads a signal from a delay line at a variable delay time (4-pointinterpolation) high-resolution delay for smaller delay times delay incoming signal for a number of samples samplewise delay feedback delay network
vd~ Extended Objects blockdelay~ delay~ z~ fdn~ cyclone flatspace zexy creb flatspace
NAME
LIBRARY/PATH FUNCTION
298
SUBWINDOWS
Vanilla Objects pd inlet outlet inlet~ outlet~ table Extended Objects dyn~ py define a subwindow control inlet / outlet audio inlet / outlet array of numbers dynamic object mangement python script objects
NAME
LIBRARY/PATH FUNCTION
299
drawnumber
struct
NAME
LIBRARY/PATH FUNCTION
300
GEM
Extended Objects accumrotate alpha ambient ambientRGB camera circle color colorRGB colorSquare cone cube cuboid curve curve3d cylinder depth diffuse diffuseRGB manipulation disk geometric emission emissionRGB manipulation fragment_program gemhead gemkeyboard gemkeyname gemlist_info gemmouse gemwin glsl_fragment glsl_program glsl_vertex hsv2rgb rgb2hsv imageVertp light world_light pix_blobtracker rgb2yuv yuv2rgb linear_path geometric non-geometric pix analysis shader shader shader information shader manipulation manipulation manipulation geometric manipulation geometric geometric geometric geometric geometric geometric geometric accumulated rotation enable alpha blending ambient coloring renders a circle colouring renders a square with several colors renders a cone renders a cone renders a cuboid box renders a bezier-curve renders a 3d beziercurve renders a cylinder turn on / off depth test diffuse colouring renders a disk emission colouring load and apply an ARB fragment shader connect gem objects to the window manager keyboard events in the gem window get current transformation of a gemlist mouse events in the gem window access to the window manager load a GLSL fragment shader link GLSL-modules into a shader program load a GLSL vertex shader convert between RGB and HSV colorspace map luminance to height adds a point-light to the scene blob detector and tracker convert between RGB and YUV colorspace
301
reads out a table renders an Alias/Wavefront-Model load multiple an Alias/Wavefront-Model and renders one of them renders a waving square (mass-springsystem) orthographic rendering defines color of particles change velocity of particles draw a particle system particle follow each other sets the gravityvector of the particle system starts a particle system gives all available information of all the particles in the system kill all particles which are older than the kill time kill all particles which are slower than the kill speed make the particles orbit about the postion x,y,z draw a particle system sets up a sink for the particles within the system change size of the particles add a particle source change the color of the particles change the size of the particles sets a cone to be the velocity-domain of new particles sets velocity of new particles sets a sphere to be the velocity-domain of
multimodel
geometric
geometric manipulation particle system particle system particle system particle system particle system particle system particle system
part_killold
particle system
part_killslow
particle system
part_orbitpoint part_render part_sink part_size part_source part_targetcolor part_targetsize part_velcone part_velocity part_velsphere
particle system particle system particle system particle system particle system particle system particle system particle system particle system particle system
302
new particles add a particle at the specified outset converts a pix to greyscale converts a pix to greyscale based on alpha add 2 images apply a super8-like aging effect set the alpha values of an RGBA-pix separate an object from a background blacklighting effect timebased IIR filter mask out pixels get the center of gravity of an image deprecated, use pix_motionblur storage place for a number of images read / write images to a pix_buffer buffer a pix mix 2 images based on their color clear an image without destroying the picture calculate the alphachannels from the RGB data transform the pixel values by a matrix set the color-channels of an image reduce the number of color in the image mix 2 images based on their luminance alpha-blend 2 images change contrast and saturation of an image convert the colorspace of an image apply a convolution kernel set the texture coordinates for a pix get a subimage of an image apply color curves to
pix_backlight pix pix_biquad pix timebased effect pix_movement pix_tIIR pix_bitmask pix pix_blob pix_blur pix_buffer pix_buffer_read pix_buffer_write pix_buf pix_chroma_key pix_clearblock pix_coloralpha pix_colormatrix pix_color pix_colorreduce pix_compare pix_composite pix_contrast pix_convert pix_convolve pix_coordinate pix_crop pix pix pix pix pix pix mix pix pix pix pix pix pix pix mix pix pix pix pix pix
303
pix_curve pix_data pix_deinterlace pix_delay pix_diff pix_dot pix_draw pix_dump pix_duotone pix_fiducialtrack pix_film pix_flip pix_freeframe pix_gain pix_grey pix_halftone pix_histo pix_hsv2rgb pix_rgb2hsv pix_imageInPlace pix_image pix_indycam pix_info pix_invert pix_kaleidoscope pix_levels pix_lumaoffset pix_mask pix_mean_color pix_metaimage pix_mix pix_motionblur pix_movement2 pix_movie
pix pix pix pix timebased effect pix mix pix pix pix pix pix analysis pix source pix pix pix pix pix fx pix pix pix source pix source pix pix pix pix pix pix pix mix pix pix pix pix timebased effect pix timebased effect pix source
apply color curves to an image get pixel data from an image deinterlace an image delay a series of images get the difference between 2 pixes make dotty images draw pixels on the screen dump all the pixel data of an image reduce the number of colors by thresholding fiducial [targe] detector and tracker load in a movie file flips the image along an axis run a FreeFrame object multiply pixel values convert the colorspace of an image into grey make halftone patterns excerpt histograms of an image convert between RGB and HSV loads multiple image files loads an image file create pixes from an SGI video camera invert an image kaleidoscope effect level adjustment offset pixels depending on the luminance mask out a pix get the mean color of the current image display a pix by itself mix 2 images based on mixing factors apply motionbluring on a series of images timebased IIR filter for motion detection load in a movie file
304
pix_multiblob pix_multiimage pix_multiply pix_normalize pix_offset pix_pix2sig~ pix_sig2pix~ pix_posterize pix_puzzle pix_rds pix_record pix_rectangle pix_refraction pix_resize pix_rgba pix_roll pix_rtx pix_scanline pix_set pix_share_read pix_share_write pix_snap2tex pix_snap pix_subtract pix_takealpha pix_texture
pix analysis pix source pix mix pix pix pix pix pix pix pix output pix pix pix pix pix pix timebased effect pix pix pix pix pix pix mix pix mix pix
blob detector for multiple blobs loads multiple image files multiply 2 images normalize an images add an offset to the color convert images <-> signals posterialization effect shuffle an image random dot stereogram for luminance write a sequence of pixes to a movie file draw a rectangle into a pix display a pix through glass bricks resize an image convert the colorspace of an image to RGBA (sc)roll through an image Realtime vs. X tranformation scan lines of an image set the pixel data of an image read / write pixels from a shared memory region take a screenshot and texture it snap a pix of the frame buffer subtract 2 images transfer the alpha channel apply texture mapping apply dynamic thresholds to pixes for binarization apply a threshold to pixes live video capture with VideoShow (windows only) open a camera and get input make a snapshot of the frame buffer and write it to a file
pix_threshold_bernsen pix pix_threshold pix_videoDS pix_video pix_write pix pix source pix source pix
305
pix_yuv pix_zoom polygon polygon_smooth pqtorusknots primT ri rectangle render_trigger ripple rubber rotate rotateXYZ scale scaleXYZ scopeXYZ~ separator shearXY shearXZ shearYX shearYZ shearZX shearZY shininess slideSquares
pix pix geometric manipulation geometric geometric geometric control geometric manipulation manipulation geometric DSP manipulation manipulation manipulation geometric
convert the colorspace of an image to YUV zoom the pixels renders a polygon turn on / off polygon smoothing renders a 3d knot renders a triangle with gradient colors renders a rectangle triggers on rendering renders and distorts a square rotation scale 3d oscilloscope
shear shininess of the material renders sliding squares specular coloring renders a sphere adds a spot light to the scene renders a square renders a teapot renders a line of text renders a torus translation renders an equilateral triangle renders a complex tube set the ARB vertex shader
specular specularRGB manipulation sphere geometric spot_light square teapot text2d text3d textextruded textoutline torus translate translateXYZ triangle tube vertex_program non-geometric geometric geometric geometric geometric manipulation geometric geometric shader
NAME
LIBRARY/PATH FUNCTION
306
PDP
Extended Objects pdp_affine pdp_agc pdp_blur_hor pdp_blur pdp_blur_ver pdp_cheby3o pdp_contrast pdp_conv_alledge pdp_conv_emboss pdp_conv_smooth pdp_conv_sobel_edge pdp_conv_sobel_hor pdp_conv_sobel_ver pdp_diff pdp_dither pdp_gain3 pdp_gradient pdp_grey pdp_invert pdp_m_inverse pdp_motion_blur pdp_motion_fade pdp_motion_phase pdp_offset pdp pdp_phase_hor pdp_phase pdp_phase_ver pdp_png_to pdp_pps pdp_qt_control pdp_qtloop2~ pdp_qtloop~ adjust colour horizontal phase shift effect phase shift effect vertical phase shift effect load + convert a png file measure number of packets per second automatic gain control horizontal blur effect blur effect vertical blur effect contrast enhancement all edge sensitive convolution filter emboss effect averaging convolution filter sobel edge detector vertical sobel edge detector horizontal sobel edge detector difference between current and previous frame dither effect independent gain for 3 channels gradient
matrix inverse motion blur effect motion triggered fade-out effect motion phase shift effect add an offset to an image
307
adjust colour saturation saves a png sequence tag a pdp message keyboard/mouse controller
NAME
LIBRARY/PATH FUNCTION
308
PHYSICAL MODELLING
Extended Objects iAmbient2D iAmbient3D flatspace ambient interaction interaction between a collection of masses and a commun environment circle interaction interaction between a collection of masses and a circle cylinder interaction interaction between a collection of masses and a cylinder line interaction interaction between a collection of masses and a line plane interaction interaction between a collection of masses and a plane segment interaction interaction between a collection of masses and a segment sphere interaction interaction between a collection of masses and a sphere link between 2 masses get liaison forces and output position
iCylinder3D
flatspace
iLine2D
flatspace
iPlane3D
flatspace
iSeg2D
flatspace
tCircle2D tCircle3D tCube3D tCylinder3D flatspace tLine2D tSeg2D tSquate2D tLink2D tLink3D tPlane3D tSphere3D flatspace flatspace flatspace
get position of masses, output forces test interaction between mass and plane test if a sphere is inside a mass
NAME
LIBRARY/PATH FUNCTION
309
OBSOLETE
Vanilla Objects scope~ namecanvas template scalar Extended Objects post_netreceive flatspace iemlib convert message lists with a prepended float index respond to events of a SpaceOrb respond to events of a graph-tablet use tabwrite~ now attach this canvas to a name use struct now draw a scalar on parent
gemorb gemtablet
Gem Gem
310
Of course the above only works for the time you are logged into your computer. In other words, if you log out or reboot you will have to type this in again. If you want these changes to be permanent then do the following: (THIS WORKS FOR LINUX [and maybe OS X] SYSTEMS ONLY) open a terminal and type in
nano ~/.bashrc
T his will open your .bashrc file in a text editor in your terminal. ***PLEASE MAKE A BACK-UP COPY OF THIS FILE BEFORE EDITING!!!*** Scroll to the bottom and type in
PATH=$LADSPA_PATH:/usr/lib/ladspa:~/.ladspa:/usr/local/lib/ladspa
Do not use spaces and don't forget the colons in between paths. And remember to save your changes. You can put a comment using a '# ' at the beginning of a line. Adding a comment will help you to remember what something is or does when you look at it later on. If you already have the ladspa-sdk installed on your system you can use the command "listplugins" in a terminal to get a list of all the LADSPA plugins on your system.
311
No worries, if you don't have the ladspa-sdk, you can install it easily by entering the following in a terminal:
sudo apt-get install ladspa-sdk
In fact, it might be useful for you to save a text file of all your plugins for reference. If you'd like to do this then type the following into a terminal:
listplugins > ~/my_dir_name_here/plugs.txt
In order to use the [plugin~] object in a patch you will have to know how to' talk' to it, i.e. what messages it takes to control it. First we'll try using a plugin that comes with the ladspa-sdk we've just downloaded here is some info about the plugins that come with the ladspa-sdk: http://www.ladspa.org/ladspa_sdk/example_plugins.html Let's start with something simple like a noise generator to get the hang of things.
312
First we need to find the 'Plugin Label' in order to instantiate the plugin the simplest way to do this is to use a command that installed along with the ladspa-sdk Looking in '/usr/lib/ladspa' directory we see the filename for the noise plugin is 'noise.so' so let's open a terminal and type in the following:
analyseplugin noise.so
we should see a report in the terminal: Plugin Name: "White Noise Source" Plugin Label: "noise_white" Plugin Unique ID: 1050 Maker: "Richard Furse (LADSPA example plugins)" Copyright: "None" Must Run Real-T ime: No Has activate() Function: No Has deativate() Function: No Has run_adding() Function: Yes Environment: Normal or Hard Real-T ime Ports: "Amplitude" input, control, 0 to ..., default 1, logarithmic "Output" output, audio T he Plugin Label for the noise.so plugin is "noise_white" So place a [plugin~] object in your patch and enter the label we found in the previous step into it. After instantiating the plugin we should see a report about the plug in the Pd console: verbose( 1):plugin~: found plugin "noise_white" in library "/usr/lib/ladspa/noise.so" verbose( 1):plugin~: constructed plugin "White Noise Source" successfully verbose( 1):plugin~: plugin ports: audio 0/1 ctrl 1/0 verbose( 1):plugin~: plugin active plugin~: "White Noise Source" We see that we have yet another name for the plugin of "White Noise Source" but we will ignore that for now. On the third line we see we have one control port which uses the left inlet. But we still need more info in order to use the plugin. Place a message box in your patch and type in [info] connect it to the left inlet of [plugin~ noise_white] and the outlet of the [plugin~] to a [print] -or- [pd/print] object after sending the [info] message we should see in the Pd console:
313
print: port in control Amplitude 0 1 print: port out audio Output 0 1 T he control port we want to use is called Amplitude and has a range from 0 - 1 In order to use this parameter we need to count the number of control ports and use that number in a message box Since we only have one control port (Amplitude) the number we'll use is '# 1' Enter the following into a message box: [control # 1 $ 1] and connect that to the [plugin~ noise_white] object left inlet next we need to add a number box or a slider and set its range to 0 1 connect that to the inlet of the message box T hen connect the output of the plugin to a [dac~] and turn on the patch as you slowly move the slider from 0 - 1 you should hear the white noise being generated.
SUMMARY
While the above seems somewhat complicated it's simpler than it looks and can be broken down into the following steps: 1 - find the "Plugin Label" on the command line 2 - send an [info] message to [plugin~ <Plugin Label>] for a list of control ports 3 - count control ports 4 - send data to the port number of the parameter you want to control it becomes much easier after you've performed these four simple steps a couple of times. More info on LADSPAs in general: http://linuxdevcenter.com/pub/a/linux/2001/02/02/ladspa.html
314
APPENDICES
80. GLOSSARY 81. PD LINKS 82. LICENSE
315
80. GLOSSARY
(Names of other glossary entries are in bold when they first appear in an entry, while the names of Pd objects appear in [square brackets].)
ADC
Analog to Digital Converter - the line into Pd from the sound card. T he Pd object for this is [adc~].
ADSR
(Attack, Decay, Sustain and Release) the common points of change (or breakpoints) in the envelope of a note.
ALIASING
whenever a sound is replayed or synthesized whose frequency is over the Nyquist number (half the current sampling rate) , a second frequency will be heard "reflecting" off the Nyquist number downwards at the same increment in Herz. Example: if the sampling rate is 44,100 Hz, the Nyquist number would be 22,050. If one attempted to play a sound at 23,050 Hz, an additional tone at 21,050 Hz (the difference between the two frequencies subtracted from the Nyquist number) would be heard.
ALSA
Advanced Linux Sound Architecture - the default set of audio drivers for the Linux operating system.
AM SYNTHESIS
See Amplitude Modulation Synthesis.
A type of sound synthesis where the gain of one signal is controlled, or modulated, by the gain of another signal. T he signal whose gain is being modulated is called the "carrier", and the signal responsible for the modulation is called the "modulator". In classical Amplitude Modulation, or AM Synthesis, both the modulator and the carrier are oscillators, however the carrier can also be another kind of signal, such as an instrument or vocal input. Amplitude Modulation using a very low frequency modulator is known as Tremolo, and the use of one audio signal to Amplitude Modulate another audio signal is known as Ring Modulation.
ANYTHING
A keyword in certain objects which matches an atom or series, sometimes written as "a" or "any".
ARGUMENT
A piece of information sent to an object which sets a parameter of that object. Arguments can be sent as messages, or taken from creation arguments. Arguments are also used to replace variables (often represented by dollar signs) in messages and objects. By using the [pack] object, multiple arguments can be sent in a message.
ARRAY
A way of graphically saving and manipulating numbers. It works in an X/Y format, meaning you can ask the array for information by sending it a value representing a location on the X (horizontal) axis, and it will return the value of that position value on the Y (vertical) axis. Arrays are often used to load soundfiles in Pd, and are displayed on screen in graphs.
ASIO
Audio Stream Input/Output - an audio driver for low latency audio input and output developed by the Steinberg audio software company and available for many soundcards using the Windows operating system.
ATTACK
T he beginning of a note, which is usually triggered by pressing a key on a keyboard or by a sequencer. A slow attack means the sound takes longer to reach full volume than a faster attack. See also envelope.
ATOM
A keyword meaning the most basic element of data.
AUDIO DRIVER
Provides a system of input and output between the soundcard and applications using the soundcard. T he more efficient the audio driver,
317
the lower the latency of an audio system will be. Examples include MME and ASIO for Windows, CoreAudio for Mac OS X and OSS , ALSA and JACK for Linux.
BANDLIMITED
When the waveform used by an oscillator has been constructed with a limited number of harmonics in order to reduce aliasing , then it is said to be bandlimited.
BANG
is special message in Pd, which many objects interpret as "do something now!", meaning do the operation the object is supposed to do with the information it already has received in its inlets. Bang can be sent via a GUI element , the [bang] object or a message box. [bang] can also be abbreviated to just [b].
BIT DEPTH
Refers to the number of bits used to write a sample. Each sample of 16-bit audio, which is the CD standard, is made from 16 bits which can either be 0 or 1. T his gives 2 16 (or 2x2x2x2x2x2x2x2x2x2x2x2x2x2x2x2 = 65,536) number of possible values that sample can have. A higher bit depth means a greater dynamic range. In contrast to 16 bit audio for CDs, studio recordings are first made at 24 (or even 32) bit to preserve the most detail before transfer to CD, and DVDs are made at 24 bit, while video games from the 1980s remain famous for their distinctively rough "8 bit sound". Bit depth is also referred to as word length.
BUFFER
a chunk of memory inside the computer used to store sound. T he soundcard uses a buffer to store audio from the audio applications for playback. If the latency of the system is too low for the soundcard and audio drivers, then the buffer will be too small and the soundcard will use all the audio data in the buffer before getting more from the audio application, resulting in an interruption know as a "dropout", or glitch.
CANVAS
An area of pixels in the patch which is used to add color or graphical layout to the patch. Since Pd remembers when things were put in the patch, a canvas is placed in the patch before any other objects which must be seen on top of it. Alternately, objects to be seen on top of the canvas can be Cut and then Pasted over it.
CARRIER
In Amplitude Modulation or Frequency Modulation synthesis, the carrier is the oscillator which is affected by the Modulator .
CLIPPING
318
Clipping occurs when a signal is too loud for the soundcard to reproduce it. T his happens when the samples used to represent the sound go out of the range between -1 and 1 due to amplifying them. Any samples out of this range will be truncated to fit within that range, resulting in distortion, a loss of audio detail and in frequencies which were not present in the original sound. T he clipping point of a system is referred to as 0 dB in the gain scale, and the gain of any sound is measured in how far below the clipping point it is (-10 dB, -24 dB, etc).
COMMENT
A line of text in a patch which explains some part of the patch, or is a reminder to the programmer or anyone else who opens the patch later on. Comments have no actual affect on the function of the patch.
CREATION ARGUMENT
Additional information given when an object is created. Example: making an object called [osc~ 440] would create a cosine oscillator (the name of the object) with a starting frequency of 440 Hz (the creation argument). See also Argument .
CUTOFF FREQUENCY
T he frequency at which a filter begins to affect a sound.
DAC
Digital to Analog Converter - the line out to the sound card from Pd. T he Pd object for this is called [dac~].
DC OFFSET
DC offset is caused when a waveform doesn't cross the zero line, or has unequal amounts of signal in the positive and negative domains. T his means that, in our model speaker, the membrane of the speaker does not return to its resting point during each cycle. T his can affect the dynamic range of the sound. While DC offset can be useful for some kinds of synthesis, it is generally considered undesirable in an audio signal.
DECAY
T he amount of time a sound takes to go from peak volume down to it's sustain level (in the case of an envelope), or to no sound at all (in the case of a delay).
319
DECIBEL
Decibel is a scale used to measure the gain or loudness of a sound. Decibel is usually abbreviated to dB and usually denotes how far under 0 dB (the clipping point of a system) a sound is (-10 dB, -24 dB, etc). T he Decibel scale is logarithmic.
DELAY
T he amount of time between one event and another. As an audio effect, a delay takes an incoming sound signal and delays it for a certain length of time. When mixed with the original sound, an "echo" is heard. By using feedback to return the delayed signal back into the delay (usually after lowering its gain), multiple echos with a decay result. T he Pd objects to create a delay are named [delwrite~] and [delread~], and the pair must be given the same creation argument in order to communicate (i.e. [delwrite~ rastaman] and [delread~ rastaman]). As a setting in Pd, delay changes the latency of the program to allow for faster response time at the expense of more gliltches or vice versa.
DISTORTION
Distortion occurs when an audio signal is changed in some way on the level of the samples which produces frequencies not present in the original. Distortion can be deliberate or unwanted, and can be produced by driving the signal to a clipping point, or by using mathematical transformations to alter the shape (or "waveform") of the signal (usually referred to as "waveshaping").
DOLLAR SIGN
A symbol in Pd which is used to represent a variable in either a message or a creation argument . Multiple dollar signs can be used, as in "$ 1 $ 2 $ 3". In such a case, $ 1 will take the first argument in an incoming message, $ 2 the second, $ 3 the third, etc etc. And in the message "set $ 1", any number sent to this message would replace $ 1, resulting in "set 1", "set 2", "set 3" etc depending on what number the message received. In the case of a creation argument used in an abstraction, one could create an abstraction named [myniceabs], and call it in a patch as [myniceabs 34], [myniceabs 66] and [myniceabs 88]. In this case, the initial frequency of an [osc~ $ 1] object in [myniceabs] would be set to 34 Hzin the first abstraction, 66 Hz in the second and 88 Hz in the third, since the creation argument of the [osc~] object sets its starting frequency. $ 0, however, is a special case, and is set to a unique random number for each abstraction it is used in (but it retains the same value everywhere inside that abstraction).
DYNAMIC RANGE
Used to refer to the difference between the loudest sound that can possibly recorded and the quietest, as well as the amount of detail which can be heard in between. Sounds which are too quiet to be recorded are said to be below the noise floor of the recording system (microphone, recorder, sound card, audio software, etc). Sounds which are too loud will be clipped. In digital audio, the bit depth used to record the sound determines the dynamic range, while in analog electronics, the self-
320
EDIT MODE
T he mode in Pd where objects, messages, comments, GUI elements and other parts of the Pd can be placed on the screen and moved around. Edit mode can be switched in and out of by using the Edit menu or the Control (or Apple) and "E" keys. T he opposite of Edit mode is Play mode.
ENVELOPE
A term used to describe changes to a sound over time. T raditionally, this is used to synthesize different instrumental sounds with Attack, Decay, Sustain and Release (or ADSR) which are triggered at the beginning of a note. A violin, for example, has a slow attack as the strings begin to vibrate, while a piano has a fast (or "percussive") attack which seperates it's distinctive sound (or "timbre") from that of other instruments.
EXTERNAL
An object in Pd which was not written into the core Pd program by the author, Miller S. Puckette. Externals are created and maintained by the Pure Data development community, and account for many of the additional fucntions of Pd, including the ability to manipulate video and 3D as well as stream MP3s and many other things. Externals are usually loaded as an external library at the start of a Pd session by including them in the startup flags, although some can be loaded as single objects at anytime as long as the location where that external is saved on your system is listed in the path setting of Pd.
EXTERNAL LIBRARY
A collection of externals written for Pd. T aken as a library, externals can be loaded at the start of a Pd session by including them in the startup flags.
FILTER
An audio effect which lowers the gain of frequencies above and/or below a certain point, called the cutoff frequency. T he range it allows through is called the pass band, and the frequencies which are reduced are called the stop band. A High Pass filter [hip~] only allows frequencies above the cutoff frequency through. A Low Pass filter [hip~] allows only frequencies lower than the cutoff frequency through. A Band Pass filter [bp~] only allows frequencies close to the cutoff frequency through. T he amount by which the filter lowers the gain of frequencies in the stop band is measured in Decibels per Octave, and is affected by the resonance ( or "Q") of the filter, which determines the amount of feedback the filter uses and which frequency is most emphasized by the filter.
FEEDBACK
Feedback occurs in any system where the output is played back into the input. 100% feedback means all of the output is returned to the
321
input. A classic example is holding a microphone in front of a speaker. Less than 100% feedback means that the signal is decreased in some way with each pass through the system. In delays, the amount of feedback determines how many repetitions of the "echo" one hears until the sound decays to zero. In a filter , feedback determines the resonance of the filter, and how much emphasis in given to the filter's cutoff frequency.
FM SYNTHESIS
See Frequency Modulation Synthesis
FOLDOVER
Foldover occurs when a frequency higher than the Nyquist number is played or synthesized. See Aliasing .
FREQUENCY
Refers to number of times in one second a vibration (in many cases a sonic vibration) occurs. Frequency is measured in Herz, and often indicates the pitch of a sound which is heard. Frequency is a linear scale, however, while pitch is logarithmic. T his means that a sound which is heard as one octave above another one is twice the frequency in Hz, while two octaves above would be four times the frequency and three octaves above would be eight times.
GAIN
Expresses the strength of an audio signal, and is expressed in Decibels. T he scale of gain is logarithmic, since it expresses the physical ratio of power between one sound and another. Gain is commonly measured in digital audio systems as the amount of Decibels below 0 dB, which is the clipping point (-10 dB, -24 dB, etc). See also loudness.
322
GLITCH
A sonic error occurring when the computer does not have enough time to process the audio coming in or out of an audio application before sending it to the sound card. T his is a result of having too low a latency, so that the buffers of the sound card are not filled up as fast as the soundcard is playing them, resulting in an temporary but audible loss of sound. Glitches can occur when other processes interrupt the processor with various tasks (such as refreshing the display on the screen, reading or writing a hard drive, etc etc).
GRAPH
A graph is a graphical container that can hold several arrays. An array needs a graph to be displayed, so whenever you create an array from the menu, you will be asked whether you want to put it into a newly created graph or into an existing graph.
GRAPH ON PARENT
A property of subpatches and abstractions where the GUI elements of the subpatch or abstraction are visible in the main patch even when that subpatch or abstraction is not open. T his allows for better graphic design and usability for complicated patches.
GUI ELEMENT
Graphical User Interface - visible parts of the Pd patch which are used to control it via the mouse or to display information, such as sliders, radio buttons, bangs, toggles, number boxes, VU meters, canvases, graphs, arrays, symbols, etc.
HARMONICS HID
see Human Interface Device
HRADIO
A horizontal radio button. See also GUI element .
HSLIDER
323
HERTZ OR HZ
A term used to describe the number of times something occurs in one second. In digital audio, it is used to describe the sampling rate, and in acoustics it is used to describe the frequency of a sound. T housands of Herz are described as KHz.
INDEX NUMBER
Index numbers are used to look up values stored in Arrays. If we ask an array what is stored at index number "0", it will return the first value stored there. And if the array has 100 values stored in it, asking it for index number "99" will give the last value stored.
INLET
T he small rectangular boxes at the top of objects, GUI elements, messages, subpatches and abstractions. T hey receive input from the outlets of the objects, messages, GUI elements, subpatches or abstractions above them. Inlets can be hot or cold.
INTEGER
In Pd, this is a whole number , without a decimal point, which can be positive or negative. See also floating point .
JACK
JACK Audio Connection Kit - a low latency audio system designed to run on Linux and Mac OSX in combination with various audio drivers such as ALSA and Portaudio. On Linux, the QJackctl application can be used to make audio and MIDI connections between the soundcard, MIDI devices such as keyboards and Pd. On Mac OSX, JACK is referred to as JackOSX, and the JackPilot application functions like QJackCtl, but only for audio connections.
LATENCY
T he amount of time needed to process all the samples coming from sound applications on your computer and send it to the soundcard for playback, or to gather samples from the sound card for recording or processing. A shorter latency means you will hear the results quicker, giving the impression of a more responsive system which musicians tend to appreciate when playing. However, with a shorter latency you run a greater risk of glitches in the audio. T his is because the computer might not have
324
enough time to process the sound before sending it to the soundcard. A longer latency means less glitches, but at the cost of a slower response time. Latency is measured in milliseconds.
LINEAR
A scale of numbers which progresses in an additive fashion, such as by adding one (1, 2, 3, 4...), two (2, 4, 6, 8...) or ten (10, 20, 30, 40...). Another type of scale used in Pd is logarithmic. Multiplying an audio signal, for example, by either a linear or a logarithmic scale will produce very different results. T he scale of frequency is linear, while the scales of pitch and gain are logarithmic.
LIST
A special type of message that is a collection of data. Specifically, a "list" is a series of 3 or more atoms whose first atom is the selector "list", or, a series of 2 or more atoms whose first atom is numeric, which causes the "list" selector to be implied, i.e. [list one two(, [1 2(, [1 two(.
LOGARITHMIC
A scale of numbers which progresses according to a certain ratio, such as exponentially (2, 4, 8, 16, 256...). Another type of scale used in Pd is linear . Multiplying an audio signal, for example, by either a linear or a logarithmic scale will produce very different results. Both scales of pitch and gain are logarithmic, while the scale of frequency is linear.
LOUDNESS
Unlike gain, which expresses the physical power of a sound, loudness is the perceived strength of a sound. Higher frequencies are perceived as louder than mid-range or lower frequencies with the same amount of gain, and the amount of perceived difference varies from person to person.
MESSAGE
A piece of information sent to the objects of a patch, often using the message GUI element . Messages tell objects which functions to perform and how, and can be simply numeric, include text which describes which function to change or even contain other information such as the location of soundfiles on the computer.
MIDI
A system of describing musical information in electronic music using numbers between 0 and 127 . T here are various types of MIDI messages which can be sent in and out of Pd such as note ([notein], [noteout]), pitchbend ([pitchin], [pitchout]), continuous controller ([ctlin], [ctlout]) and program change ([pgmin], [pgmout]). MIDI messages can be sent to and from external MIDI devices, such as keyboards, slider boxes or hardware sequencers, or they can be exchanged with other MIDI applications inside the computer.
MME
325
T he default set of audio drivers for the Windows operating system. MME drivers do not have as low latency as ASIO drivers.
MODULATOR
In Amplitude Modulation or Frequency Modulation synthesis, the modulator is the oscillator which affects the Carrier .
MONOPHONIC
A monophonic electronic music instrument has one voice, meaning that only one note can be played at a time. See also polyphonic.
NOISE FLOOR
T he part of the dynamic range which represents the quietest sound which can be recorded or played back. Sounds below this level (expressed in Decibels) will not be heard over the background noise of the system. In digital audio, the bit depth used to record the sound determines the noise floor, while in analog electronics, the self-noise of the equipment also determines the noise floor. T ypical computer soundcards can have an analog noise floor between approximately -48 dB and -98 dB.
NORMALIZE
T o normalize an audio signal means to adjust its gain to peak at the maximum the sound card allows before clipping (i.e. -1 and 1). T his is done to maximize the dynamic range of the signal when it is played back.
NOTE
In electronic and computer music, a note is represented on the MIDI scale by two numbers between 0 and 127 (the amount of keys available on the MIDI keyboard). A note is triggered either by pressing a key on the keyboard or by a sequencer. A MIDI note has two values: it's pitch (the musical note it plays, expressed as a frequency which has been assigned to that note) and it's velocity (how hard the key is pressed, which determines how loud the note is heard). Notes also have an envelope, which determines the change in volume that note has over time.
NUMBER
A GUI element used to display and store numbers. T he number2 GUI element can also save numbers when that function is set in its properties.
NYQUIST FREQUENCY
A number which is half the sampling rate of the application which is being used, and represents the highest possible
326
frequency which can be played back without aliasing . T he Nyquist number is expressed in Herz. Example: if the sampling rate is 44,100 Hz, the Nyquist number would be 22,050. If one attempted to play a sound at 23,050 Hz, an aliased additional sound at 21,050 Hz (the difference between the two frequencies subtracted from the Nyquist number) would be heard.
OBJECT
T he most basic building block of a Pd patch. Objects have a names, which could be considered the "vocabulary" of the Pd language, and the name of the object determines its function. Objects can take creation arguments to modify their functions at the time they are created. T hey receive information via inlets and send output via outlets. Objects with a tilde (~) in their name are audio generating or processing objects, otherwise they are objects to manipulate data (for example, an object named [+] would add two numbers together, and an object named [+~] would add two audio signals together). T o see the documentation help file of any object, right click with the mouse, or use the Control (or Apple) key with a mouseclick.
OCTAVE
T he interval between one musical note and another with 12 semitones (or 12 notes in the MIDI scale) between them, which is seen in acoustics as half or double the frequency. While frequency is a linear scale, however, while pitch is logarithmic. T his means that a sound which is heard as one octave above another one is twice the frequency in Hz, while two octaves above would be four times the frequency, three octaves above would be eight times higher, and one octave below would be half the frequency.
OSCILLATOR
An audio generator which produces a continuous, repeating waveform. A cosine oscillator [osc~] produces a pure sinus wave with no harmonics, while a sawtooth or ramp oscillator [phasor~] produces a richer sound with many harmonics. Other shapes for a waveform include square, pulse or triangle. Each waveform is defined by a mathematical function, and each shape has its own harmonic spectrum. OpenGL (Open G raphics L ibrary) is a widely used, industry standard library of 2D and 3D graphics functions.
OSS
An outdated system of audio drivers for the Linux operating system, replaced by ALSA.
OUTLET
T he small rectangular boxes at the bottom of objects, GUI elements, messages, subpatches and abstractions. T hey send output to the inlets of the objects, subpatches, abstractions, messages and GUI elements below them.
327
OVERSAMPLING
T he process of increasing the sampling rate of digital audio, most often in order to remove aliasing noise with a filter .
PASS BAND
T he range of frequencies allowed through by a filter .
PATCH
T he document in which you build structures within Pd. One patch can contain many objects, comments, GUI elements, messages, subpatches and abstractions. If another patch is saved in the same working directory or in another directory listed in the path setting, then it can be used in the main or parent patch as an abstraction. Patches are saved as simple text files with the names and locations of all the contents listed inside. Patches are always saved with the .pd extension.
PATH
Is a setting of Pd which determines two things. T he first is the directories on your computer which Pd searches to load externals, and the second is the directories where Pd searches to find abstractions used in patches. Path can be set with startup flags, or by entering the directories in the startup settings using the main window of Pd.
PITCH
A part of a note in the MIDI specification which determines what pitch is heard when the note is played. It is represented by a number between 0 and 127 , with each number representing a key on the MIDI keyboard. T he relation of pitch to frequency is logarithmic. T his means that a sound which is heard as one octave (+ 12 MIDI notes) above another one is twice the frequency in Hz, while two octaves (+ 24 MIDI notes) above would be four times the frequency, three octaves (+ 36 MIDI notes) above would be eight times, and one octave below (- 12 MIDI notes) would be half the frequency.
PLAY MODE
T he mode in Pd where the GUI elements and other parts of the Pd can be manipulated with the mouse. T his is often when the patch is being played. Play mode can be switched in and out of by using the Edit menu or the Control (or Apple) and "E" keys. T he opposite of Play mode is Edit mode.
POINTER
A reference to a position in a scalar used to manipulate and read data from it.
328
POLYPHONIC
A polyphonic electronic music instrument is capable of playing multiple notes at a time, allowing for chords and other musical techniques. T he number of notes it can play is determined by the number of voices it has. See also monophonic.
PORTAUDIO
A Free and Open Source set of audio drivers for Linux and Mac OS X.
PROPERTY
All the GUI elements in Pd have a menu where their properties can be changed. T his is accessed by using the right-click mouse button, or the Control (or Apple) key and a mouseclick. Under properties, the graphical appearance and function of the GUI element can be changed.
RADIO
A GUI element set of buttons which, when clicked, send the number of the box which was clicked to the outlet , or display numbers received by its inlet . Radio boxes can be vertical or horizontal, and the number of boxes seen can be changed in the properties.
REAL-TIME
A system where changes can be made in the program even as it is running, and the user can see or hear the results immediately. T he opposite would be a non-real-time system, where data must be compiled or rendered by the computer in order to hear or see results.
RELEASE
T he amount of time it takes for the gain of a note to reach zero after the key on the keyboard has been released. See also envelope.
RESONANCE
T he frequency in a filter or other system of feedback which is most emphasized, resulting in that frequency being the loudest. Ring Modulation T he use of one audio signal to Amplitude Modulate another audio signal.
SAMPLE
In digital audio, a sample is the smallest possible element of a recorded sound. In CD audio, for example, it takes 44,100 samples to make one second of recorded sound, and so we can say that the sampling rate is 44,100 Herz. Samples also have a bit depth which determines the dynamic range that is possible to record and playback. Common bit depths are 8 (for old video games), 16 (for CD audio), 24 (for studio recording and DVDs) or 32 (for sounds inside the computer). In electronic music, a
329
SAMPLER
An electronic music instrument which plays back a recorded sound (or sample) whenever it is sent a note. T he pitch of the note determines how fast or slow the sample is played back, which emulates the pitch changes in other instruments. Samples can be looped (played over and over) and one-shot (played once).
SAMPLING RATE
T he rate at which the computer records and plays back sound, which is measured in Herz representing the number of samples per second. CD audio is recorded and played at 44,100 Hz (or 44.1 KHz), while DVD audio runs at 96,000 Hz (or 96 KHz) and cheap consumer gadgets like voice recorders, video games, mobile phones, toys and some MP3 players often use a rate of 22,050 Hz (22.05 KHz) or even less. T he sampling rate determines the highest frequency which can be recorded or played, which is expressed by the Nyquist number , or half the sampling rate. Sounds higher in frequency than the Nyquist rate will be aliased. Playing back sounds at a different sampling rate then they were recorded at will result in hearing that sound at the "wrong speed".
SCALAR
A graphical instance of a struct in Pd's graphical data structures.
SEQUENCER
A MIDI device or application used to store notes which are sent to a synthesizer or sampler . Sequencers often play notes back at a rate specified in Beats per Minute.
SELECTOR
A symbolic atom that serves as an instruction to the receiving object as how to handle the message.
SELF-NOISE
T he amount of analog noise a piece of electronic equipment produces without any further input, often due to parts of its circuitry or electromagnetic interference. Self-noise is measured in Decibels. T he self noise of the equipment determines the noise floor . Professional or semiprofessional sound equipment often produces less self-noise than cheaper, consumer-grade equipment. T ypical computer soundcards have self-noise which results in a noise floor between approximately -48 dB and -98 dB.
330
names of the objects can be abbreviated to [s] and [r], and a pair for audio signals also exists ([send~] and [receive~], or [s~] and [r~]).
SHELL
T he text-only interface to your computer, where commands are typed in order to start programs and get information. On Linux and Mac OSX, this is often called the "terminal". On Windows, it is referred to as the Command Prompt or as the DOS Prompt (now obsolete).
SLIDER
A GUI element which sends a number to its outlet when it is moved with the mouse, or display numbers received by its inlet . Sliders can be horizontal or vertical, and when they are created have a typical MIDI range of 0 to 127 . T his range can be changed under the properties.
STARTUP FLAG
When starting Pd from the shell, the startup flags are used to pass information to Pd about how it should run, what audio drivers it should use, how many channels, what patch to open at startup, which external libraries to load and what paths to use to find externals and abstractions.
STOP BAND
T he frequencies which are reduced by a filter .
STRUCT
An object to create templates for data structures.
SUBPATCH
A graphical enclosure in a patch used to conceal parts of the patch which are not always used. Subpatches can be opened by clicking on them, and the GUI elements inside can be displayed even when closed by setting their properties to Graph on Parent . Inlets and outlets can be used to send and receive information to and from a subpatch, as well as send and receive pairs.
SUSTAIN
T he level of gain a note holds after the attack and decay. T he note holds this gain level until the key is released. See also envelope.
SYMBOL
A string of characters, that is not interpreted as a number used in mathematic calculations. Single, "printable" words without (unescaped) whitespace are common symbols, but it's possible to construct unprintable symbols, symbols with escaped whitespace or symbols
331
that look like a number, but consist of only numeric characters with objects like [makefilename] or some externals. Such symbols currently will not be saved properly in a .pd-file and they cannot be created by manually editing a message box. Internally a symbol is defined as an atom of type "t_symbol" in Pd.
SYMBOL MESSAGE
A message that has the symbol "symbol" as selector followed by another symbol atom as its data part.
TRUNCATE
When a number goes out of a certain set of allowed boundaries, it will be truncated. T his means that any numbers out of that range will be replaced by the closest number still within that range (either the highest or lowest). In a digital audio signal, this is called clipping .
VARIABLE
A type of "placeholder", often within a message and written as a dollar sign, which is meant to be replaced with other information. For example, in the message "$ 1 $ 2 $ 3", there are three variables to be replaced with actual information.
VELOCITY
A part of a note in the MIDI specification which says how hard the key of the keyboard was pressed, and in turn determines the gain of that note when it is played. It is represented by a number between 0 and 127 .
VOICES
A polyphonic electronic music instrument can play as many simultaneous notes as it has voices. A monophonic instrument, on the other had, can only play one note at a time and is said to have one voice.
VRADIO
A vertical radio button. See also GUI element .
VSLIDER
A vertical slider . See also GUI element .
VU
332
A GUI element in Pd which is used to display the gain of an audio signal in Decibels.
WORD LENGTH
See bit depth.
WORKING DIRECTORY
In Pd this is the directory which the patch you are working in has been saved to. Any abstractions used in that patch must either be saved to that directory, or the directory in which those abstractions have been saved must be added to the path setting in the startup preferences.
333
81. PD LINKS
PURE DATA SOFTWARE
PureData.info: http://www.puredata.info/ Pd Downloads: http://www.puredata.info/downloads Pure Data CVS: http://www.puredata.info/dev/cvs Pd Extended Installers: http://at.or.at/hans/pd/installers.html Miller S. Puckette's Pd page: http://wwwcrca.ucsd.edu/~msp/software.html
EXTERNALS
Pd Downloads: http://www.puredata.info/downloads Pure Data CVS: http://www.puredata.info/dev/cvs GEM: http://gem.iem.at/ PdP: http://zwizwa.fartit.com/zwikizwaki.php? page=PureDataPacket PiDiP: http://ydegoyon.free.fr/pidip.html Unauthorized Pd: http://ydegoyon.free.fr/software.html PMPd: http://drpichon.free.fr/pmpd/
334
GETTING HELP
Pure Data Mailing List (Search): http://lists.puredata.info/pipermail/pdlist/ Pure Data Mailing List (Subscribe): http://lists.puredata.info/listinfo/pdlist Pure Data Forum: http://puredata.hurleur.com/
335
82. LICENSE
All chapters copyright of the authors (see below). Unless otherwise stated all chapters in this manual licensed with GNU General Public License version 2 T his documentation is free documentation; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. T his documentation is distributed in the hope that it will be useful, but WIT HOUT ANY WARRANT Y; without even the implied warranty of MERCHANT ABILIT Y or FIT NESS FOR A PART ICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this documentation; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
AUTHORS
ABSTRACTIONS Luka Princic 2008 Modifications: adam hyde 2009 Derek Holzer 2010 ADDITIVE SYNTHESIS Derek Holzer 2008 Modifications: adam hyde 2009 Daniel Shiffman 2009 William Abernathy 2009 ADVANCED CONFIGURATION adam hyde 2009 Modifications: Caio Barros 2009 Hans-Christoph Steiner 2010 AMPLIFIER Derek Holzer 2008 Modifications: adam hyde 2009 AMPLITUDE MODULATION Derek Holzer 2008, 2009 Modifications: adam hyde 2009 Daniel Shiffman 2009 Jonathan Wilkes 2010 ANTIALIASING Derek Holzer 2009, 2010 Modifications: adam hyde 2009 Alexandre Porres 2009
336
T homas Goose 2009 ARRAYS, GRAPHS, TABLES Luka Princic 2008 Modifications: Derek Holzer 2009, 2010 AUDIO DELAY Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 AUDIO FILTERS Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 AUDIO GLUE Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 AUDIO MATH Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 AUDIO STREAMING adam hyde 2005, 2006, 2007 , 2008, 2009 Modifications: Ben Baker-Smith 2010 corey fogel 2007 Derek Holzer 2008 Felipe Ribeiro 2007 Heiko Recktenwald 2006 CONFIGURING Derek Holzer 2006, 2008 Modifications: adam hyde 2007 , 2008, 2009 Georg ... 2008 Martin Schied 2009 CONTROLLING THE SYNTH Derek Holzer 2008, 2009 Modifications: adam hyde 2009 Paul Sobczak 2010 CREDITS adam hyde 2006, 2007 , 2008, 2009 Modifications: Derek Holzer 2006, 2008, 2009 DC OFFSET Derek Holzer 2009, 2010 Modifications: adam hyde 2009 Alexandre Porres 2009
337
Alexandre Porres 2009 T homas Goose 2009 DATAFLOW Derek Holzer 2008, 2010 Modifications: adam hyde 2009 Jonathan Wilkes 2010 DATA TEMPLATES Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 DOLLAR SIGNS Luka Princic 2008 Modifications: Derek Holzer 2010 Hans-Christoph Steiner 2010 neil hickey 2010 ENVELOPE GENERATOR Derek Holzer 2008 Modifications: adam hyde 2009 FILTERS Derek Holzer 2008 Modifications: adam hyde 2009 4 STAGE SEQUENCER Derek Holzer 2008, 2009 Modifications: adam hyde 2009 FREQUENCY Derek Holzer 2008 Modifications: adam hyde 2009 Daniel Shiffman 2009 Laura Garcia-Barrio 2009 FREQUENCY MODULATION Derek Holzer 2008, 2009 Modifications: adam hyde 2009 BASICS marius schebella 2009 Modifications: adam hyde 2009 Derek Holzer 2010 Evan Raskob 2009 Hans-Christoph Steiner 2009 servando barreiro 2010 MOVING IMAGES marius schebella 2009 Modifications: adam hyde 2009 servando barreiro 2010
338
INTRODUCTION marius schebella 2009 Modifications: adam hyde 2009 Derek Holzer 2010 Evan Raskob 2009 Hans-Christoph Steiner 2009 olsen wolf 2009 servando barreiro 2010 GEM Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 EFFECTS marius schebella 2009 Modifications: adam hyde 2009, 2010 Jeremy Schaller 2009 servando barreiro 2010 vincent RIOUX 2009 RECORDING marius schebella 2009 Modifications: adam hyde 2009, 2010 vincent RIOUX 2009 SCREENS marius schebella 2009 Modifications: adam hyde 2009 Antonio Roberts 2009 servando barreiro 2009, 2010 VIDEO MIXER marius schebella 2009 Modifications: adam hyde 2009 servando barreiro 2009, 2010 VIDEO TRACKING marius schebella 2009 Modifications: adam hyde 2009, 2010 Derek Holzer 2010 Hans-Christoph Steiner 2009 max neupert 2009 GAME CONTROLLERS adam hyde 2009 Modifications: David A. Arraya 2010 Derek Holzer 2010 Hans-Christoph Steiner 2009 Koray T ahiroglu 2009 servando barreiro 2009 GENERATING WAVEFORMS Derek Holzer 2009, 2010
339
Modifications: Roman Haefeli 2009 GRAPH ON PARENT Luka Princic 2008 Modifications: adam hyde 2009 Derek Holzer 2010 INSTALLING ARDUINO (REDHAT) Derek Holzer 2010 Modifications: Lukas Kaser 2010 INSTALLING ARDUINO (OSX) Derek Holzer 2010 Modifications: Lukas Kaser 2010 penko sound 2010 DEBIAN adam hyde 2008 Modifications: Derek Holzer 2008 OSX Derek Holzer 2006, 2008 Modifications: adam hyde 2008 Daniel Prieto 2007 Hans-Christoph Steiner 2009 Maarten Brinkerink 2007 Steve Bull 2010 INSTALLING PDUINO Hans-Christoph Steiner 2009 Modifications: Derek Holzer 2010 UBUNTU adam hyde 2008 Modifications: Derek Holzer 2008 WINDOWS adam hyde 2006, 2008 Modifications: Derek Holzer 2008 Hans-Christoph Steiner 2009 INTRODUCTION adam hyde 2006, 2008, 2009 Modifications: Derek Holzer 2006, 2007 , 2008, 2010 Evelina Domnitch 2007 Hans-Christoph Steiner 2010 Patrick Davison 2009 GLUE Derek Holzer 2006, 2008 Modifications: adam hyde 2009 Joao Pais 2009
340
Joao Pais 2009 Lachlan Wimsett 2010 LISTS Hans-Christoph Steiner 2009 Modifications: adam hyde 2009 Derek Holzer 2010 Frank Barknecht 2010 MATH Derek Holzer 2008, 2010 Modifications: adam hyde 2008, 2009 Hans-Christoph Steiner 2010 Joao Pais 2009 MATH Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 MESSAGES Derek Holzer 2008, 2010 Modifications: adam hyde 2008, 2009 Frank Barknecht 2010 Hans-Christoph Steiner 2009 Joao Pais 2009 Jonathan Wilkes 2010 MIDI Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 MISC Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 lucas kendo 2009 OSC Patrick Davison 2009 Modifications: adam hyde 2009 alvaro ortiz 2010 Derek Holzer 2010 vincent RIOUX 2009 INTRODUCTION Joao Pais 2009 Modifications: adam hyde 2009 OBSOLETE Joao Pais 2009 Modifications: Derek Holzer 2009 Hans-Christoph Steiner 2009
341
OGGCAST adam hyde 2006, 2009 Modifications: alejo duque 2009 Derek Holzer 2008 ORDER OF OPERATIONS Luka Princic 2008 Modifications: adam hyde 2008, 2009 Derek Holzer 2010 Phil T esner 2010 OSCILLATORS Derek Holzer 2008, 2010 Modifications: adam hyde 2009 Daniel Shiffman 2009 Laura Garcia-Barrio 2009 T ad Bisaha 2009 OSCILLATRORS AND TABLES Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 PDP Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 STARTING PDUINO Koray T ahiroglu 2009 Modifications: Derek Holzer 2009, 2010 Lukas Kaser 2010 penko sound 2010 PDUINO Derek Holzer 2010 LIGHT SENSOR Derek Holzer 2010 PHYSICAL MODELLING Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 GLOSSARY Derek Holzer 2006, 2008, 2009 Modifications: adam hyde 2008, 2009 Evan Raskob 2009 Frank Barknecht 2010 Hans-Christoph Steiner 2009 Laura Garcia-Barrio 2009 michela pelusio 2007
342
LINKS Derek Holzer 2006, 2007 , 2008 Modifications: adam hyde 2009 SEND AND RECEIVE adam hyde 2009 Modifications: Hans-Christoph Steiner 2009 Scott Fitzgerald 2009 SEQUENCER anique vered 2010 SIMPLE SYNTH Derek Holzer 2008, 2009, 2010 Modifications: adam hyde 2009 Jonathan Wilkes 2010 Laura Garcia-Barrio 2009 SQUARE WAVES Derek Holzer 2008, 2009 Modifications: adam hyde 2009 STARTING Derek Holzer 2006, 2008 Modifications: adam hyde 2008, 2009 Caio Barros 2009 corey fogel 2007 Daniel Prieto 2007 STEP SEQUENCER Derek Holzer 2008, 2009 Modifications: adam hyde 2009 SUBPATCHES Luka Princic 2008 Modifications: adam hyde 2009 Derek Holzer 2010 SUB WINDOW Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 TABLES Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 THE INTERFACE Derek Holzer 2006, 2007 , 2008 Modifications: adam hyde 2008, 2009 anique vered 2010 Caio Barros 2009
343
Caio Barros 2009 Daniel Prieto 2007 Julio T erra 2010 Steve Bull 2010 TIME Joao Pais 2009 Modifications: adam hyde 2009 Derek Holzer 2009 TROUBLE SHOOTING Derek Holzer 2006, 2008 Modifications: adam hyde 2008, 2009 anique vered 2010 Caio Barros 2009 Mark Hadman 2010 simone marin 2008 USING MIDI servando barreiro 2009 Modifications: adam hyde 2009 WHAT IS DIGITAL AUDIO? Derek Holzer 2006, 2008, 2009 Modifications: adam hyde 2008, 2009 Julio T erra 2010 Pall T hayer 2010 GRAPHICAL PROGRAMMING Derek Holzer 2006, 2008, 2009, 2010 Modifications: adam hyde 2008, 2009 First Last 2009 Hans-Christoph Steiner 2010 Jonathan Wilkes 2010 Maarten Brinkerink 2007 WIRELESS CONNECTIONS Luka Princic 2008 Modifications: adam hyde 2009 Derek Holzer 2010 HOSTING PLUGINS Kim Cascone 2009, 2012 Modifications: adam hyde 2012
344
345
0. T his License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. T he "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. T he act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.)
346
T hese requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. T hus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machinereadable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (T his alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) T he source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.
347
4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. T hese actions are prohibited by law if you do not accept this License. T herefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. T his section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.
348
9. T he Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE T HE PROGRAM IS LICENSED FREE OF CHARGE, T HERE IS NO WARRANT Y FOR T HE PROGRAM, T O T HE EXT ENT PERMIT T ED BY APPLICABLE LAW. EXCEPT WHEN OT HERWISE ST AT ED IN WRIT ING T HE COPYRIGHT HOLDERS AND/OR OT HER PART IES PROVIDE T HE PROGRAM "AS IS" WIT HOUT WARRANT Y OF ANY KIND, EIT HER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMIT ED T O, T HE IMPLIED WARRANT IES OF MERCHANT ABILIT Y AND FIT NESS FOR A PART ICULAR PURPOSE. T HE ENT IRE RISK AS T O T HE QUALIT Y AND PERFORMANCE OF T HE PROGRAM IS WIT H YOU. SHOULD T HE PROGRAM PROVE DEFECT IVE, YOU ASSUME T HE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECT ION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED T O IN WRIT ING WILL ANY COPYRIGHT HOLDER, OR ANY OT HER PART Y WHO MAY MODIFY AND/OR REDIST RIBUT E T HE PROGRAM AS PERMIT T ED ABOVE, BE LIABLE T O YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENT AL OR CONSEQUENT IAL DAMAGES ARISING OUT OF T HE USE OR INABILIT Y T O USE T HE PROGRAM (INCLUDING BUT NOT LIMIT ED T O LOSS OF DAT A OR DAT A BEING RENDERED INACCURAT E OR LOSSES SUST AINED BY YOU OR T HIRD PART IES OR A FAILURE OF T HE PROGRAM T O OPERAT E WIT H ANY OT HER PROGRAMS), EVEN IF SUCH HOLDER OR OT HER PART Y HAS BEEN ADVISED OF T HE POSSIBILIT Y OF SUCH DAMAGES. END OF TERMS AND CONDITIONS
349