ChucK

From Wikipedia, the free encyclopedia

Template:Short description Script error: No such module "other uses".

Page Module:Infobox/styles.css has no content.

ChucK
Lua error in package.lua at line 80: module 'Module:InfoboxImage/data' not found.
ParadigmMulti-paradigm
Designed byGe Wang
First appeared2003; 23 years ago (2003)[1]
Template:Infobox software/simple
Typing disciplineStrong
OSCross-platform
LicenseMac, Linux, Windows: GPL-2.0-or-later
iOS: Proprietary
Websitechuck.cs.princeton.edu

ChucK is a concurrent, strongly timed audio programming language for real-time synthesis, composition, and performance,[3] which runs on Linux, Mac OS X, Microsoft Windows, and iOS. It is designed to favor readability and flexibility for the programmer over other considerations such as raw performance. It natively supports deterministic concurrency and multiple, simultaneous, dynamic control rates. Another key feature is the ability to live code; adding, removing, and modifying code on the fly, while the program is running, without stopping or restarting. It has a highly precise timing/concurrency model, allowing for arbitrarily fine granularity. It offers composers and researchers a powerful and flexible programming tool for building and experimenting with complex audio synthesis programs, and real-time interactive control.[4]

ChucK was created and chiefly designed by Ge Wang as a graduate student working with Perry R. Cook.[1] ChucK is distributed freely under the terms of the GNU General Public License on Mac OS X, Linux and Microsoft Windows. On iPhone and iPad, ChiP (ChucK for iPhone) is distributed under a limited, closed source license, and is not currently licensed to the public. However, the core team has stated that it would like to explore "ways to open ChiP by creating a beneficial environment for everyone".[5]

Language features

The ChucK programming language is a loosely C-like object-oriented language, with strong static typing.

ChucK is distinguished by the following characteristics:[6]

  • Direct support for real-time audio synthesis
  • A powerful and simple concurrent programming model
  • A unified timing mechanism for multi-rate event and control processing.
  • A language syntax that encourages left-to-right syntax and semantics within program statements.
  • Precision timing: a strongly timed sample-synchronous timing model.
  • Programs are dynamically compiled to ChucK virtual machine bytecode.
  • A runtime environment that supports on-the-fly programming.
  • The ChucK Operator (=>) that can be used in several ways to "chuck" any ordered flow of data from left to right.

ChucK standard libraries provide:

Code example

The following is a simple ChucK program that generates sound and music:

 // signal graph (patch)
 SinOsc s => JCRev r => dac;
 .2 => s.gain;
 // dry/wet mix (for reverb)
 .1 => r.mix;
 
 // an array of pitch classes (semitones)
 [ 0, 2, 4, 7, 9, 11 ] @=> int hi[];
 
 // do forever:
 while( true )
 {
     // choose a note, shift registers, convert to frequency
     Std.mtof( 45 + Std.rand2(0,3) * 12 +
         hi[Std.rand2(0,hi.cap()-1)] ) => s.freq;
 
     // advance time
     120::ms => now;
 }

Uses

ChucK has been used in performances by the Princeton Laptop Orchestra (PLOrk) and for developing Smule applications, including their ocarina emulator.[8]

PLOrk organizers attribute some of the uniqueness of their performances to the live coding they can perform with ChucK.[9]

See also

Lua error in mw.title.lua at line 404: bad argument #2 to 'title.new' (unrecognized namespace name 'Portal').

References

Page Template:Reflist/styles.css has no content.

  1. ^ a b Page Module:Citation/CS1/styles.css has no content.Dean, R. T. (2009). The Oxford handbook of computer music. Oxford Handbooks in Music Series. Oxford University Press US. p. 57. ISBN 0-19-533161-3.
  2. ^ Page Module:Citation/CS1/styles.css has no content."github.com/ccrma/chuck". Retrieved 2021-01-18.
  3. ^ Page Module:Citation/CS1/styles.css has no content.Wang, Ge (2008). The ChucK Audio Programming Language: A Strongly-timed and On-the-fly Environ/mentality (Ph.D.). Princeton University.
  4. ^ Page Module:Citation/CS1/styles.css has no content."ChucK : Strongly-timed, Concurrent, and On-the-fly Music Programming Language". Archived from the original on 2003-11-18. Retrieved 2013-09-06. ...offers composers, researchers, and performers a powerful programming tool for building and experimenting with complex audio synthesis/analysis programs, and real-time interactive music.
  5. ^ Page Module:Citation/CS1/styles.css has no content.Wang, Ge. "ChucKian greetings and updates!". chuck-users mailing list. Princeton University. Retrieved 2011-05-24.
  6. ^ Page Module:Citation/CS1/styles.css has no content.Wang, G. and P. Cook (2003). "ChucK: A concurrent, on-the-fly audio programming language" (PDF). Proceedings of the International Computer Music Conference.
  7. ^ Page Module:Citation/CS1/styles.css has no content."FLOSS manual". Flossmanuals. Retrieved 2021-01-18.
  8. ^ Page Module:Citation/CS1/styles.css has no content.Kirn, Peter (July 22, 2009). "Interview: Smule's Ge Wang on iPhone Apps, Ocarinas, and Democratizing Music Tech". Create Digital Music. Retrieved 2011-05-24.
  9. ^ Page Module:Citation/CS1/styles.css has no content.Petersen, Brittany (2008-06-11). "Laptop Orchestra Makes (Sound) Waves". PC Magazine. Archived from the original on 2017-07-11. Retrieved 2017-08-25. The other thing that set PLOrk apart from the beginning was its use of a text-based program called ChucK, developed by a Princeton graduate student. ChucK allows the user to code quickly—similar to live coding—and "on the fly" for a performance, allowing for the spontaneity and real-time interaction that is important in live music performance. "ChucK is the only language that I know of that was designed from the outset to facilitate that," Trueman says. The program is also "concurrent," meaning that it can handle many different processes going on at once. Its "innate sense of time" allows performers to communicate during live rehearsals and performances, he says, adding that many other laptop musicians probably use a program like Max/MSP (which PLOrk uses in addition to ChucK) or another widely available commercial program. Today some other laptop orchestras—including the Stanford Laptop Orchestra (SLOrk), which was directly inspired by PLOrk—also employ ChucK.

Further reading

Page Template:Refbegin/styles.css has no content.

Literature by its authors

Seemingly independent coverage

  • ChucK homepage at Princeton University
  • ChucK mirror at Stanford University
  • ChucK FLOSS manual


Lua error in package.lua at line 80: module 'Module:Navbox/configuration' not found.