Workshops as Community Gathering
What we learned from running our first year of open-access arts programming in Toronto's west end.
Read more →A framework for connecting visual art, music, science, and technology.
Our programming brings together visual artists, musicians, educators, and researchers who are interested in process. Each discipline contributes tools, language, and methods that deepen the work of the others.
The result is a practical and reflective environment where people learn by making, listening, and discussing.
The Spiritual Cabaret framework draws on four areas of practice, each contributing something the others need:
None of these disciplines is sufficient on its own. Together they create conditions for genuinely interdisciplinary work.
One of our most productive entry points is the relationship between sound and image. Artists from Kandinsky to Alvin Lucier have explored it — it remains productive precisely because it resists resolution.
“I am sitting in a room different from the one you are in now. I am recording the sound of my speaking voice and I am going to play it back into the room again and again until the resonant frequencies of the room reinforce themselves.”
— Alvin Lucier, I Am Sitting in a Room (1969)
In our workshops we use several approaches to make this relationship tangible:
In our science-inflected sessions we sometimes begin with a basic experiment in acoustics. Here is a minimal version you can try in any browser console using the Web Audio API:
const ctx = new (window.AudioContext || window.webkitAudioContext)();
function playTone(frequency, startTime = 0, duration = 1) {
const osc = ctx.createOscillator();
const gain = ctx.createGain();
osc.connect(gain);
gain.connect(ctx.destination);
osc.frequency.value = frequency;
gain.gain.setValueAtTime(0.3, ctx.currentTime + startTime);
gain.gain.exponentialRampToValueAtTime(0.001, ctx.currentTime + startTime + duration);
osc.start(ctx.currentTime + startTime);
osc.stop(ctx.currentTime + startTime + duration);
}
// A staggered C major chord — C4, E4, G4
playTone(261.63, 0.0);
playTone(329.63, 0.3);
playTone(392.00, 0.6);
Running this plays three sine waves timed 300ms apart. It is a small experiment, but it illustrates acoustic science directly: frequency ratios, timbre, and the physics of vibration as lived experience.
The image below shows graphic scores produced during our spring workshop series. Participants were given no instructions beyond: make something a musician could use.
Graphic score workshop — Roncesvalles neighbourhood space, March 2026. Click to enlarge.
Technology in our framework is not a separate domain — it is a set of instruments available to everyone in the room. Practically, this means:
The goal is not polished digital artefacts. The goal is to use the tools as extensions of inquiry.
This short documentary from the Tate explores how artists have worked with the relationship between sound and visual practice — directly relevant to the methods we use in our own programming.
Our next interdisciplinary workshop takes place in Parkdale in June 2026. No experience in any discipline is required — only curiosity and a willingness to work in public. Register your interest.
Related Posts
What we learned from running our first year of open-access arts programming in Toronto's west end.
Read more →How Spiritual Cabaret approaches practice as a form of research and shared learning.
Read more →