38

Max: A visual programming language for music and multimedia

 4 years ago
source link: https://en.wikipedia.org/wiki/Max_(software)
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
Max RJnUjaB.png!webDeveloper(s) Cycling '74 Stable release

8.1.1 / November 12, 2019 ; 2 months ago

Written in C ,C++ (onJUCE platform) Operating system Microsoft Windows , macOS Type Music andmultimedia development License Proprietary Website cycling74.com/products/max/ Max RJnUjaB.png!web

Max 7

Paradigm visual , flow-based , declarative , domain-specific Developer Cycling '74 Stable release

7.3.5 / March 8, 2018 ; 22 months ago

Website cycling74.com/products/max/

Max , also known as Max/MSP/Jitter, is a visual programming language formusic andmultimedia developed and maintained bySan Francisco-based software companyCycling '74. Over its more than thirty-year history, it has been used by composers, performers, software designers, researchers, and artists to create recordings, performances, and installations.

The Max program is modular, with most routines existing asshared libraries. An application programming interface (API) allows third-party development of new routines (named external objects ). Thus, Max has a large user base of programmers unaffiliated with Cycling '74 who enhance the software with commercial and non-commercialextensions to the program. Because of thisextensible design, which simultaneously represents both theprogram's structure and its graphical user interface (GUI), Max has been described as thelingua franca for developing interactive music performance software.

Contents

History [ edit ]

1980s: Miller Puckette began work on Max in 1985, at the Institut de Recherche et Coordination Acoustique/Musique (IRCAM) inParis.Originally called The Patcher , this first version provided composers with a graphical interface for creating interactivecomputer music scores on theMacintosh. At this point in its development Max couldn't perform its own real-time sound synthesis in software, but instead sent control messages to external hardware synthesizers and samplers usingMIDI or a similarprotocol.Its earliest widely recognized use in composition was for Pluton , a 1988 piano and computer piece byPhilippe Manoury; the software synchronized a computer to a piano and controlled aSogitec 4X for audio processing.

In 1989, IRCAM developed Max/FTS ("Faster Than Sound"), a version of Max ported to the IRCAM Signal Processing Workstation (ISPW) for theNeXT. Also known as "Audio Max", it would prove a forerunner to Max's MSP audio extensions, adding the ability to do real-time synthesis using an internal hardware digital signal processor (DSP) board.The same year, IRCAM licensed the software toOpcode Systems.

1990s: Opcode launched a commercial version named Max in 1990, developed and extended byDavid Zicarelli. However, by 1997, Opcode was considering cancelling it. Instead, Zicarelli acquired the publishing rights and founded a new company, Cycling '74, to continue commercial development.The timing was fortunate, as Opcode was acquired byGibson Guitar in 1998 and ended operations in 1999.

IRCAM's in-house Max development was also winding down; the last version produced there was jMax , a direct descendant of Max/FTS developed in 1998 forSilicon Graphics (SGI) and later forLinux systems. It used Java for its graphical interface and C for its real-time backend, and was eventually released asopen-source software.

3yy6V3v.jpg!web

Various synthesizers and instruments connected to Max.

Meanwhile, Puckette had independently released a fully redesigned open-source composition tool named Pure Data (Pd) in 1996, which, despite some underlying engineering differences from the IRCAM versions, continued in the same tradition. Cycling '74's first Max release, in 1997, was derived partly from Puckette's work on Pure Data. Called Max/MSP ("Max Signal Processing", or the initials Miller Smith Puckette), it remains the most notable of Max's many extensions and incarnations: it made Max capable of manipulating real-timedigital audio signals without dedicated DSP hardware. This meant that composers could now create their own complex synthesizers and effects processors using only a general-purpose computer like the MacintoshPowerBook G3.

In 1999, theNetochka Nezvanova collective released NATO.0+55+3d , a suite of externals that added extensive real-time video control to Max.

2000s: Though NATO.0+55+3d became increasingly popular among multimedia artists, its development stopped abruptly in 2001. SoftVNS , another set of extensions for visual processing in Max, was released in 2002 by Canadian media artistDavid Rokeby. Cycling '74 released their own set of video extensions, Jitter , alongside Max 4 in 2003, adding real-time video,OpenGL graphics, andmatrix processing capabilities. Max 4 was also the first version to run onWindows. Max 5, released in 2008, redesigned the patching GUI for the first time in Max's commercial history.

2010s: In 2011, Max 6 added a new audio engine compatible with 64-bit operating systems, integration withAbleton Live sequencer software, and an extension called Gen, which can compile optimized Max patches for higher performance.Max 7 was released in 2014 and focused on 3D rendering improvements.On September 25, 2018 Max 8, the most recent major version of the software, was released.Some of the new features include MC, a new way to work with multiple channels, JavaScript support with Node for Max, and Vizzie 2.

On June 6, 2017,Ableton announced its purchase of Cycling '74, with Max continuing to be published by Cycling '74 and David Zicarelli remaining with the company.Programs sharing Max'svisual programming concepts are now commonly used for real-time audio and video synthesis and processing.

Language [ edit ]

Iby2ei3.jpg!web

Screenshot of an older Max/Msp interface.

Max is named after composerMax Mathews, and can be considered a descendant of hisMUSIC language, though its graphical nature disguises that fact. Like mostMUSIC-N languages, Max distinguishes between two levels of time: that of an event scheduler, and that of the DSP (this corresponds to the distinction between k-rate and a-rate processes inCsound, and control rate vs. audio rate inSuperCollider).

The basic language of Max and its sibling programs is that of a data-flow system: Max programs (named patches ) are made by arranging and connecting building-blocks of objects within a patcher , or visual canvas. These objects act as self-contained programs (in reality, they are dynamically linked libraries), each of which may receive input (through one or more visual inlets ), generate output (through visual outlets ), or both. Objects pass messages from their outlets to the inlets of connected objects.

Max supports six basic atomic data types that can be transmitted as messages from object to object: int, float, list, symbol, bang, and signal (for MSP audio connections). Several more complex data structures exist within the program for handling numeric arrays ( table data), hash tables ( coll data), XML information ( pattr data), and JSON-based dictionaries ( dict data). An MSP data structure ( buffer~ ) can hold digital audio information within program memory. In addition, the Jitter package adds a scalable, multi-dimensional data structure for handling large sets of numbers for storing video and other datasets ( matrix data).

Max is typically learned through acquiring a vocabulary of objects and how they function within a patcher; for example, the metro object functions as a simple metronome, and the random object generates random integers. Most objects are non-graphical, consisting only of an object's name and several arguments-attributes (in essence class properties) typed into an object box . Other objects are graphical, including sliders, number boxes, dials, table editors, pull-down menus, buttons, and other objects for running the program interactively. Max/MSP/Jitter comes with about 600 of these objects as the standard package; extensions to the program can be written by third-party developers as Max patchers (e.g. by encapsulating some of the functionality of a patcher into a sub-program that is itself a Max patch), or as objects written inC, C++ ,Java, orJavaScript.

The order of execution for messages traversing through the graph of objects is defined by the visual organization of the objects in the patcher itself. As a result of this organizing principle, Max is unusual in that the program logic and the interface as presented to the user are typically related, though newer versions of Max provide several technologies for more standard GUI design.

Max documents (named patchers) can be bundled into stand-alone applications and distributed free or sold commercially. In addition, Max can be used to author audio and MIDIplugin software forAbleton Live through the Max for Live extension.

With the increased integration oflaptop computers into live music performance (inelectronic music and elsewhere), Max/MSP and Max/Jitter have received attention as a development environment available to those serious about laptop music/video performance.

See also [ edit ]


Recommend

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK