Book Image

Multimedia Programming Using Max/MSP and TouchDesigner

By : Patrik Lechner
Book Image

Multimedia Programming Using Max/MSP and TouchDesigner

By: Patrik Lechner

Overview of this book

Max 6 and TouchDesigner are both high-level visual programming languages based on the metaphor of connecting computational objects with patch cords. This guide will teach you how to design and build high-quality audio-visual systems in Max 6 and TouchDesigner, giving you competence in both designing and using these real-time systems. In the first few chapters, you will learn the basics of designing tools to generate audio-visual experiences through easy-to-follow instructions aimed at beginners and intermediate. Then, we combine tools such as Gen, Jitter, and TouchDesigner to work along with Max 6 to create 2D and 3D visualizations, this book provides you with tutorials based on creating generative art synchronized to audio. By the end of the book, you will be able to design and structure highly interactive, real-time systems.
Table of Contents (19 chapters)
Multimedia Programming Using Max/MSP and TouchDesigner
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Analog synths and control voltage


Many people who work with Max/MSP also like analog modular synths since the idea behind the two is pretty similar: connecting boxes, tweaking parameters, and making sound. Analog modular synths use control voltage (CV) to communicate, send triggers, control pitch, and the like. How could we use a great sequencer that we just created in Max to control our analog modular synth? Well, there are a couple of options, some of which require the acquisition of additional equipment or software, but we'll stick to the most simple one: using our audio interface to send out CV signals (please take a look at the section about Arduino too; it also generates voltages and is a very handy tool for this task too).

There are two problems when using an audio interface for the generation of CV signals:

  • AC coupling

  • Maximum voltage

AC coupling essentially means that there is a high-pass filter or a DC-blocking filter, after the DAC, the digital-to-analog converter. Since CV signals...