DiskOut

object DiskOut extends ProductReader[DiskOut]

A UGen which writes a signal to a sound file on disk. To achieve this efficiently, a buffer is needs to be provides which is used to buffer the incoming signal.

'''Note''': It might be that the buffer size must be a multiple of (2 * the server's block size). We haven't currently verified this, but to be safe, you should make sure this property is met.

The signal output by the UGen represents the number of frames written.

See also

Buffer#write

Companion
class
trait Product
trait Mirror
trait ProductReader[DiskOut]
class Object
trait Matchable
class Any

Type members

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def ar(buf: GE, in: GE): DiskOut
Value Params
buf

the buffer used internally by the UGen. this number of frames in the buffer must be a power of two (this is currently not checked!). The buffer must have been initialized with a write command whose leaveOpen argument is true. Note that the number of channels of the buffer and of the input signal must be the same, otherwise DiskOut will fail silently (and not write anything to the file). '''Warning''': Crashes the server if the number of channels exceeds 32.

in

the signal to be recorded

def read(in: RefMapIn, key: String, arity: Int): DiskOut