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
2 answers

ClassNotFoundError when I run the class outside of eclipse

I currently try to run java code in Maxmsp using a mxj object, and I want to load some classes inside of the code. But I always get the errors, although the code runs properly in eclipse. What is the problem? This is my code. If I bang in Maxmsp,…
Kiyu
  • 13
  • 5
0
votes
1 answer

Firefox Page Inspector API to Max/msp

this is my first question here so please don't be too judging. I did a fast search but couldn't find anything helpful. How do i access to the page inspector api on firefox? I'm aiming to connect the page inspector to Max/msp in order to make sounds…
0
votes
1 answer

Arduino - Receive Multiple Osc Values at ones

I am trying to send from max msp some values. I have no problem in receiving them however, when I try to send multiple values at one I have some troubles. Is there a way to get multiple values? using the code below I am getting : > pixelNum: 10 …
SNos
  • 3,430
  • 5
  • 42
  • 92
0
votes
2 answers

pyOSC simple Server

I'm working on a simple program where Max-msp send some integers via OSC to python. I'm using the pyOSC library for python. Now i can easily print the numbers but i can't decode it and use it as an integer inside python (i'm noob). ideas? import…
okgo
  • 9
  • 3
0
votes
2 answers

How to maintain type consistency when transferring between Max/MSP and Python via UDP?

I'm new to Python and trying to send a list of floats from Max/MSP but all I receive is some encrypted jargon on the other side. For example if I tried to send -64.463172 24.633138 10.054035 -2.445868 -7.855343 -8.22241 -7.066427 -5.288864 -2.530465…
to_the_sun
  • 63
  • 6
0
votes
1 answer

How do I pass two parameters to a js object, including an array?

I am completely new to Max and am struggling to understand how to use arrays and Javascript parameters. I have one working js object that outputs an array: var inlets = 1; var outlets = 1; function getRandomChordProgression() { outlet(0,…
Richard
  • 14,798
  • 21
  • 70
  • 103
0
votes
0 answers

Chords Pad GUI - I want to be able to store a triad chord and as I click a pad it plays that chord

import com.cycling74.max.*; import javax.swing. *; import java.awt.*; import java.awt.event.*; import javax.swing.event.*; This is creating the gui for later down the code public class coursework3d extends MaxObject { private program1 win; …
0
votes
1 answer

MaxMSP: Carry count on counter object

I am using the counter object in MaxMSP, and I have the carry count number (right outlet) increasing every time a counter cycle is completed. However, every time I reset the counter (by sending a 0 to its forth inlet) and send also a 0 to the carry…
0
votes
0 answers

Java class for Max MSP- OutOfMemoryError

I am trying to use the following java in my max patch via an mxj (bridge between max and java). It is meant to download a jpeg stream from an IP address and render to a matrix. However, I keep getting a long list of errors, usually ending in an…
0
votes
1 answer

Javascript divide buffer into golden rectangles

Im using JS in max/Msp and want to slice the buffer into sections using the golden ratio. I know that this will be a recursive function using the formula a+b/a = a/b but im not sure how to express this in javascript and how to then divide the…
0
votes
2 answers

How can I include a mxj Java jar/class folder in a freezed m4l-Device?

I have a maxforlive device using java/mxj. I used all of these options to include my java files during development: Including my (maven) target/classes directory through max.java.config.txt. Adding a directory through Options > File…
Michael Hopfner
  • 133
  • 1
  • 10
0
votes
2 answers

Initialization of a counter in max msp

How can I use a type of counter system where not necessarily it starts in 1? for instance the normal counter is counter 0 1 100 where I don't want to start in 1 but in a different number?
Amaria
  • 1
  • 2
0
votes
1 answer

digitalRead arduino to max/msp

I have a DHT11 temp/humidity sensor connected to my arduino. I've have correct readout to my arduino serial monitor. Now I want to route that data to Max/msp thru SerialReceive. I have connection to my arduino and it gives me a bang on the same time…
Blckpstv
  • 117
  • 3
  • 17
0
votes
1 answer

Comparing substrings in two coll objects / MAX/MSP

It seems to be difficult to process Max/MSP strings character-by-character. I have been working on using two coll objects, one with input text as one word per line: 1, phone; and the second with the substrings that I want to isolate from the input…
aceslowman
  • 621
  • 13
  • 28
0
votes
1 answer

Matching OSC input in Max patch

I need some help as I’m stuck with trying to match an incoming OSC message to trigger an event. It’s probably quite simple, but I’m a beginner. The incoming OSC message sends the zone number, user number and 0 or 1 if the zone is…
RexTheRunt
  • 141
  • 1
  • 3
  • 12