Book Image

Mapping and Visualization with SuperCollider

By : Marinos Koutsomichalis
Book Image

Mapping and Visualization with SuperCollider

By: Marinos Koutsomichalis

Overview of this book

SuperCollider is an environment and programming language used by musicians, scientists, and artists who work with audio-files SuperCollider has built-in graphical features which are used in conjunction with the sound synthesis server to create audio-visual mapping and sound visualization. If you wish to create data visualizations by acquiring data from audio and visual sources, then this book is for you.Digital sound artists need to analyze, manipulate, map, and visualize data when working on a scientific or an artistic project. As an artist, this book, by means of its numerous code examples will provide you with the necessary knowledge of SuperCollider's practical applications, so that you can extract meaningful information from audio-files and master its visualization techniques. This book will help you to prototype and implement sophisticated visualizers, sonifiers, and complex mappings of your data.This book takes a closer look at SuperCollider features such as plotting and metering functionality to dispel the mysterious aura surrounding the more advanced mappings and animation strategies. This book also takes you through a number of examples that help you to create intelligent mapping and visualization systems. Throughout the course of the book, you will synthesize and optimize waveforms and spectra for scoping as well as extract information from an audio signal. The later sections of the book focus on advanced topics such as emulating physical forces, designing kinematic structures, and using neural networks to enable you to develop a visualization that has a natural motion with structures that respect anatomy and which come with an intelligent encoding mechanism. This book will teach you everything you need to work with intelligent audio-visual systems to extract and visualize audio-visual data.
Table of Contents (16 chapters)

Audio visualizers


Having elaborated on more complex graphics and animation techniques, it does make sense to briefly revisit the fundamentals of audio scoping and examine how we can further exploit the built-in visualizers as well as how to implement our own, more advanced ones.

Trailing waveforms

Regarding how to further exploit existent visualizers, we could, for instance, layer the distinct semi-transparent instances of the ScopeView class and modulate their horizontal zoom factors periodically and at different rates to achieve accelerated trailing effects.

For example:

var window = /* create parent window here */

var buffers= Array.fill(8,{Buffer.alloc(Server.default,1024,2)});// an Array of 8 buffers

var scopes = Array.fill(8,{arg i; ScopeView(window,Rect(0,0,640,480))
  .bufnum_(buffers[i].bufnum) // associate with the right Buffer
  .backColor_(Color(0.6,0.8,0.9,1/4)) // notice the alpha channel
  .waveColors_([Color.green,Color.yellow]);
});

/* modulate horizontal zoom factor on all...