Questions tagged [max-msp-jitter]

Max/MSP/Jitter is an object-oriented graphical multimedia programming environment, sometimes referred to simply as Max. Programming is performed by making connections between objects, to create a 'patch'. Max objects are data focused, MSP objects deal with audio and signal-rate calculations, and Jitter objects process pixel-video and OpenGL information.

Max/MSP/Jitter is an object-oriented graphical multimedia programming environment, sometimes referred to simply as Max. Programming is performed by making connections between objects, to create a 'patch'. Max objects are data focused, MSP objects deal with audio and signal-rate calculations, and Jitter objects process pixel-video and OpenGL information.

Max was originally written by Miller Puckette at Paris' IRCAM in the mid-1980s, as the Patcher editor for the Macintosh to provide composers with an authoring system for interactive computer music. Later, Max was developed and maintained by Paris' IRCAM while Miller Puckette went to found Pure Data, Max's free counterpart.

Max, at it's latest iteration, can be divided into 4 'low level' modules, and 2 'higher level' ones:

  • Max: responsible for non-audio data handling, MIDI and OSC.
  • Msp: responsible for signal processing and generation.
  • Jitter: real-time video, 3D/2D vector graphics, and effects.
  • Gen: another iteration of audio/video processing.

At a higher level, Max in the latest releases has implemented:

  • BEAP: robust library of high-level modules for sound synthesis.
  • Vizzie: high-level visual processing modules.

For more information visit the website for the application.

101 questions
0
votes
1 answer

the argument of Max/Msp object [line]

The basic argument for object [line] is a pair of destination/time value, but there's another possible argument - grain, sets the time interval, which is hard to understood. If [line] is calculating the ramping time (since it's given…
Sylvia
  • 11
  • 2
0
votes
1 answer

Automatically Turn a Toggle On and Off in Max MSP

How do I automatically turn a toggle on and off in Max MSP? For instance, if I want this toggle to print out this message for 30 seconds, and then stop printing for 30 seconds, and then on and off again by itself for a set period of time without me…
0
votes
1 answer

Max/Msp as Java lib?

I need to read data from the mic input in realtime in my Java program. I experimented with TaroDSP a bit and while it does provide a fairly straightforward API for this, its latency is too high for my purposes. I was thinking that maybe I can…
user975068
  • 71
  • 1
  • 5
0
votes
1 answer

python receive OSC message from Max

I am a fairly experienced python user, but I have no experience with OSC protocol, MAX and SuperCollider. I am helping a friend in building a python code that should do the following: receive a message from MAX via OSC elaborate the message in…
brodegon
  • 231
  • 2
  • 12
0
votes
1 answer

Max/MSP: How to manipulate zl list data to get upper quartile

I'm currently developing a Shazam like tool for college where I take a live audio input and output an audio fingerprint to be searched within an internal database. What I have so far is getting a processed stream of audio into a zl.slice with 512…
0
votes
2 answers

How to know when a for loop is done without knowing how many iterations there will be?

using a for-loop in javascript i´m getting a not known amount of id´s, they´re not in an array but coming one by one. is there a way to get an alert when there are no more id´s to retrieve meaning the for loop is done? i can´t wrap my head around…
0
votes
1 answer

Intercepting Sound From Other Programs

I want to do a couple of things: -I want to hear sound from all other programs through max, and max only. -I want to edit that sound in real time and hear only the edited sound. -I want to slow down the sound, while stacking the non-slowed, incoming…
poppy
  • 247
  • 2
  • 15
0
votes
1 answer

How to substitute a "," with a "\,"?

regex \, @substitute \\, The substitution works with the double backslashes, but I can't match the comma. I want an input string It's not raining, but it will, I'm told. to look like this It's not raining\, but it will\, I'm told. after regex…
0
votes
0 answers

Exporting Max/Msp/Jitter Console Data

I have a pretty well functioning patch that uses two cameras, and employs cv.jit.track to track an object in "3D". The console prints out sets of coordinates as the object moves through space (format [x,y,z]). My end goal is to translate this data…
0
votes
1 answer

Array data being duplicated when transmitted via socket (Socket.io)

I have a NodeJS server which receives data from Max/MSP (with Max-api module) using Socket.io sockets. Messages including a file directory name (which includes images of a specific song's bars, notes, and lyrics), the tempo of the song (2, 4, 6, or…
Nancy Collins
  • 197
  • 4
  • 13
0
votes
1 answer

Simulating gravity in 2D with Max / Jitter

A beginner of two months or so with Max. I've managed to generate a randomly bouncing ball thanks to a few L Objects. Pressing the button near the top right of the patch randomizes the x & y velocities. I'm using global values as I plan on adding…
0
votes
2 answers

Sending messages from Python using osc4py3?

I'm currently trying to figure out how to send OSC messages from Python to Max/MSP. I'm currently using osc4py3 to do so, and I have a sample code from the documentation that should hypothetically be working, written out here: from…
0
votes
1 answer

Display RGB colors from two changing values

I have two values (between 0 and 255), from audio sources. I'm trying to display two different RGB colours, a rectangle split by the middle, the colors from these two changing numbers, the colors changing as the numbers. thank for you help, I know…
ZACK F.
  • 23
  • 5
0
votes
2 answers

Get the name of a coll object in Max C API

I am writing a Max MSP external. I am lost in Max C API documentation since hours and couldn't find a way to get the name of a coll object from Max C API. https://cycling74.com/sdk/max-sdk-8.0.3/html/index.html If the object is | coll foo | , foo is…
Ali Somay
  • 585
  • 8
  • 20
0
votes
2 answers

converting a string with commas to a array with commas (or even just a number with commas

I'm using JS inside MaxMSP I would like to take a string output (of separated by comma single fibonacci numbers) and convert it to either an array or number, keeping the space and commas but getting ride of the "double quotes" I've tried a bunch of…
sonoptik
  • 21
  • 2