de.sciss.synth.ugen

VDiskIn

final case class VDiskIn(rate: Rate, numChannels: Int, buf: GE, speed: GE = synth.this.GE.const(1.0), loop: GE = synth.this.GE.const(1), sendID: GE = synth.this.GE.const(0)) extends MultiOut with HasSideEffect with IsIndividual with Product with Serializable

A UGen to stream in a signal from an audio file with variable playback speed. Continuously plays a longer audio file from disk. This requires a buffer to be preloaded with one buffer size of sound. If loop is set to 1, the file will loop.

Note: The buffer size must be a multiple of (2 * the server's block size). See Buffer#cue for details.

If the speed is too high, the UGen will not execute, posting a warning.

numChannels

the amount of channels the file and the buffer will have. This is an Int and hence must be pre-determined. Different SynthDefs must be created for different numbers of channels

buf

the id of the buffer with the correct number of channels and frames

speed

controls the speed of playback. Values below 4 are probably fine, but the higher the value, the more disk activity there is, and the more likelihood there will be a problem. The following must be true: rate < bufFrames / (2 * blockSize), e.g with typical default values, this will be 32768 / (2 * 64) = 256.

loop

whether the file should loop when its end is reached

sendID

If a value other than zero is used, the UGen sends an OSC message with this id and the file position each time it reloads the buffer: OSCMessage( "/diskin", nodeID, sendID, frame )

See also

de.sciss.synth.ugen.PlayBuf

de.sciss.synth.ugen.DiskOut

de.sciss.synth.ugen.DiskIn

de.sciss.synth.Buffer#cue

Linear Supertypes
IsIndividual, HasSideEffect, MultiOut, SomeOut, GE.Lazy, GE, UGenSource[UGenInLike], Product, Equals, Expander[UGenInLike], Lazy, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. VDiskIn
  2. IsIndividual
  3. HasSideEffect
  4. MultiOut
  5. SomeOut
  6. Lazy
  7. GE
  8. UGenSource
  9. Product
  10. Equals
  11. Expander
  12. Lazy
  13. Serializable
  14. Serializable
  15. AnyRef
  16. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new VDiskIn(rate: Rate, numChannels: Int, buf: GE, speed: GE = synth.this.GE.const(1.0), loop: GE = synth.this.GE.const(1), sendID: GE = synth.this.GE.const(0))

    numChannels

    the amount of channels the file and the buffer will have. This is an Int and hence must be pre-determined. Different SynthDefs must be created for different numbers of channels

    buf

    the id of the buffer with the correct number of channels and frames

    speed

    controls the speed of playback. Values below 4 are probably fine, but the higher the value, the more disk activity there is, and the more likelihood there will be a problem. The following must be true: rate < bufFrames / (2 * blockSize), e.g with typical default values, this will be 32768 / (2 * 64) = 256.

    loop

    whether the file should loop when its end is reached

    sendID

    If a value other than zero is used, the UGen sends an OSC message with this id and the file position each time it reloads the buffer: OSCMessage( "/diskin", nodeID, sendID, frame )

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. val buf: GE

    the id of the buffer with the correct number of channels and frames

  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  13. val loop: GE

    whether the file should loop when its end is reached

  14. def makeUGen(_args: IndexedSeq[UGenIn]): UGenInLike

    Attributes
    protected
    Definition Classes
    VDiskIn → UGenSource
  15. def makeUGens: UGenInLike

    Attributes
    protected
    Definition Classes
    VDiskIn → Expander
  16. final def name: String

    Definition Classes
    UGenSource
  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. val numChannels: Int

    the amount of channels the file and the buffer will have.

    the amount of channels the file and the buffer will have. This is an Int and hence must be pre-determined. Different SynthDefs must be created for different numbers of channels

  21. val rate: Rate

    Definition Classes
    VDiskIn → GE
  22. final def rewrap(args: IndexedSeq[UGenInLike], exp: Int): UGenInLike

    Attributes
    protected
    Definition Classes
    SomeOut → UGenSource
  23. val sendID: GE

    If a value other than zero is used, the UGen sends an OSC message with this id and the file position each time it reloads the buffer: OSCMessage( "/diskin", nodeID, sendID, frame )

  24. val speed: GE

    controls the speed of playback.

    controls the speed of playback. Values below 4 are probably fine, but the higher the value, the more disk activity there is, and the more likelihood there will be a problem. The following must be true: rate < bufFrames / (2 * blockSize), e.g with typical default values, this will be 32768 / (2 * 64) = 256.

  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. final def unwrap(args: IndexedSeq[UGenInLike]): UGenInLike

    Attributes
    protected
    Definition Classes
    UGenSource
  27. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  28. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  29. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from IsIndividual

Inherited from HasSideEffect

Inherited from MultiOut

Inherited from SomeOut

Inherited from GE.Lazy

Inherited from GE

Inherited from UGenSource[UGenInLike]

Inherited from Product

Inherited from Equals

Inherited from Expander[UGenInLike]

Inherited from Lazy

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped