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

How to get mouse state from within an mxj object in Max/MSP

From inside an mxj object, is there any way to determine whether any mouse buttons are currently pressed? I know that in a Max patch this data can be gathered from a [mousestate] object. I'd like to do the same sort of thing, but from within my…
dB'
  • 7,838
  • 15
  • 58
  • 101
0
votes
1 answer

How do I add external objects to a Max/MSP standalone application

I'm trying to build a standalone application in Max/MSP and I'm having trouble with a couple of external objects. I've tried explicitly including them through the "Include file..." command in the build window, but they still show up as greyed-out…
dB'
  • 7,838
  • 15
  • 58
  • 101
0
votes
1 answer

Python: OSC.py No callback registered to handle OSC-address

I hope someone can help me! I'm getting this error when sending OSC messages: OSCServer: No callback registered to handle OSC-address '/minibee/output/1' I seem to have got a successful OSC server running, but it won't send out any data, and…
RexTheRunt
  • 141
  • 1
  • 3
  • 12
0
votes
2 answers

OSC-address in MAX/MSP

Can anyone help me with a problem routing OSC messages? I'm using Python, MAX/MSP with OSC to communicate between Arduino Xbees. I hope there's someone out there!
RexTheRunt
  • 141
  • 1
  • 3
  • 12
0
votes
1 answer

Arduino2max digital pin communication to max using an Arduino mega 2560

Im working on connecting an Arduino Mega 2560 into max msp, I have adapted the Arduino2max arduino code and max patch. I have adapted the max patch and succeeded with all 16 analog inputs from arduino into max but cannot get any digital pins over…
JoeMel
  • 1
  • 1
-1
votes
3 answers

Max-msp or Processing

I want to program an interactive screen which will translate body movement into sound and not sure whether I should use Processing or Max-msp. What would you suggest?
Mor Bakal
  • 7
  • 2
-1
votes
1 answer

MAX MSP // How can i controll visualisation with incoming audio signal?

do anyone work with MAX MSP and can help me? how can i control videosignal with incoming audio signal. I would like to swith video input signal betwen 2 cameras, when the music changes. How can i read a frequency or bpm and by changing send signal…
Oleg PeP
  • 35
  • 6
-1
votes
1 answer

max/msp/jitter Sound - Speech segmentation/recognition/analysis

I am trying to develop a speech / sound recognition program which extracts some useful data such as sound is concerned. For instance .. fundamental frequency / MFCC / Centroid etc. Speech is usually segmented in frames of 20 to 30 ms, and the…
Ane
  • 29
  • 6
-1
votes
1 answer

How do I resolve the scope issue with my variables and/or functions?

I'm using Javascript within the programming environment of Max/MSP. Here's a basic overview of it's implementation in Max if you're interested. There's nothing particularly unusual there. Just some custom functions/methods available. So I'm not…
rpeg
  • 228
  • 3
  • 14
-1
votes
3 answers

Real-time visualisations with audio and video, which direction should I look?

I have a little pet project with a friend where we're looking to create a program for real-time visualisations, mainly utilising audio/video material, controlled by MIDI. Now, the MIDI part is not a problem, you seem to find decent solutions for…
vekkuli
  • 9
  • 2
-2
votes
2 answers

Java/Processing - scale image matrix with wrapping edges

I've been wondering how to efficiently implement the following image scale procedure in Java or Processing. When scaling out, the bounds of the image wrap around the screen edges.I'd like to apply the same at runtime to my Pixels() array in…
1 2 3 4 5 6
7