de.sciss.synth.Server

Config

final class Config extends ConfigLike

See also

de.sciss.synth.Server.ConfigLike

de.sciss.synth.Server.ConfigBuilder

Linear Supertypes
ConfigLike, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Config
  2. ConfigLike
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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 audioBuffers: Int

    The maximum number of audio buffers (for the Buffer class).

    The maximum number of audio buffers (for the Buffer class).

    Definition Classes
    ConfigConfigLike
  8. val audioBusChannels: Int

    The maximum number of audio bus channels.

    The maximum number of audio bus channels. This includes the channels connected to hardware (outputBusChannels) as well as all channels for internal routing.

    Definition Classes
    ConfigConfigLike
  9. val blockSize: Int

    The calculation block size.

    The calculation block size. That is, the number of audio samples calculated en-bloc. This corresponds with the control rate, such that controlRate := audioRate / blockSize. It should be a power of two.

    Definition Classes
    ConfigConfigLike
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. val controlBusChannels: Int

    The maximum number of control bus channels.

    The maximum number of control bus channels.

    Definition Classes
    ConfigConfigLike
  12. val deviceName: Option[String]

    (Realtime) An option denoting the name of the sound card to use.

    (Realtime) An option denoting the name of the sound card to use. On systems which distinguish input and output devices (OS X), this implies that both are the same. Otherwise, you can use the deviceNames method instead.

    Definition Classes
    ConfigConfigLike
    See also

    deviceNames

  13. val deviceNames: Option[(String, String)]

    (Realtime) An option denoting the name of the input and output sound device to use.

    (Realtime) An option denoting the name of the input and output sound device to use. This is for systems which distinguish input and output devices (OS X). If you use a single device both for input and output (applies to most professional audio interfaces), you can simply use the single string method deviceName.

    Definition Classes
    ConfigConfigLike
    See also

    deviceName

  14. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  18. val hardwareBlockSize: Int

    (Realtime) A value to adjust the sound card's hardware block size.

    (Realtime) A value to adjust the sound card's hardware block size. Typically you will leave this to 0 which means that the current block size is used. The block sizes supported depend on the particular sound card. Lower values decrease latency but may increase CPU load.

    Definition Classes
    ConfigConfigLike
  19. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  20. val host: String

    (Realtime) Host address of scsynth, when trying to connect to an already running server on the net.

    (Realtime) Host address of scsynth, when trying to connect to an already running server on the net.

    Definition Classes
    ConfigConfigLike
  21. val inputBusChannels: Int

    (Realtime) The number of connected audio hardware input channels.

    (Realtime) The number of connected audio hardware input channels. This does not need to correspond to the actual number of channels your sound card provides, but can be lower or higher, although a higher value doesn't have any effect as channel indices above the number of channels of the sound card will be treated as internal channels.

    Definition Classes
    ConfigConfigLike
  22. val inputStreamsEnabled: Option[String]

    (Realtime) An option to enable particular input 'streams' or 'bundles' of a sound card.

    (Realtime) An option to enable particular input 'streams' or 'bundles' of a sound card. This is a 'binary' String made of '0' and '1' characters. If the string is "01100", for example, then only the second and third input streams on the device will be enabled.

    Definition Classes
    ConfigConfigLike
  23. final def internalBusIndex: Int

    A utility method providing the audio bus offset for the start of the internal channels.

    A utility method providing the audio bus offset for the start of the internal channels. (simply the sum of outputBusChannels and inputBusChannels).

    Definition Classes
    ConfigLike
  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. val loadSynthDefs: Boolean

    Whether scsynth should load synthdefs stored on the harddisk when booted.

    Whether scsynth should load synthdefs stored on the harddisk when booted.

    Definition Classes
    ConfigConfigLike
  26. val machPortName: Option[(String, String)]

    ?

    ?

    Definition Classes
    ConfigConfigLike
  27. val maxLogins: Int

    (Realtime) The maximum number of client connections when using TCP transport.

    (Realtime) The maximum number of client connections when using TCP transport.

    Definition Classes
    ConfigConfigLike
  28. val maxNodes: Int

    The maximum number of concurrent nodes (synths and groups).

    The maximum number of concurrent nodes (synths and groups).

    Definition Classes
    ConfigConfigLike
  29. val maxSynthDefs: Int

    The maximum number of synth defs.

    The maximum number of synth defs.

    Definition Classes
    ConfigConfigLike
  30. val memorySize: Int

    The maximum number of pre-allocated realtime memory in bytes.

    The maximum number of pre-allocated realtime memory in bytes. This memory is used for many UGens such as Limiter, DelayN etc. It does not affect dynamically allocated memory such as audio buffers.

    Definition Classes
    ConfigConfigLike
  31. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  34. val nrtCommandPath: String

    (Non-Realtime) Path to the binary OSC file.

    (Non-Realtime) Path to the binary OSC file.

    Definition Classes
    ConfigConfigLike
  35. val nrtHeaderFormat: AudioFileType

    (Non-Realtime) Audio file format for writing the output.

    (Non-Realtime) Audio file format for writing the output.

    Definition Classes
    ConfigConfigLike
  36. val nrtInputPath: Option[String]

    (Non-Realtime) Path to the audio input file used as audio input bus supplement.

    (Non-Realtime) Path to the audio input file used as audio input bus supplement.

    Definition Classes
    ConfigConfigLike
  37. val nrtOutputPath: String

    (Non-Realtime) Path to the audio output file used as audio output bus supplement.

    (Non-Realtime) Path to the audio output file used as audio output bus supplement.

    Definition Classes
    ConfigConfigLike
  38. val nrtSampleFormat: SampleFormat

    (Non-Realtime) Audio sample format for writing the output.

    (Non-Realtime) Audio sample format for writing the output.

    Definition Classes
    ConfigConfigLike
  39. val outputBusChannels: Int

    The number of connected audio hardware output channels.

    The number of connected audio hardware output channels. This does not need to correspond to the actual number of channels your sound card provides, but can be lower or higher, although a higher value doesn't have any effect as channel indices above the number of channels of the sound card will be treated as internal channels.

    Definition Classes
    ConfigConfigLike
  40. val outputStreamsEnabled: Option[String]

    (Realtime) An option to enable particular output 'streams' or 'bundles' of a sound card.

    (Realtime) An option to enable particular output 'streams' or 'bundles' of a sound card. This is a 'binary' String made of '0' and '1' characters. If the string is "01100", for example, then only the second and third output streams on the device will be enabled.

    Definition Classes
    ConfigConfigLike
  41. val plugInsPaths: List[String]

    An explicit list of paths where DSP plugins are found.

    An explicit list of paths where DSP plugins are found. Usually this is not specified, and scsynth looks for plugins in their default location.

    Definition Classes
    ConfigConfigLike
  42. val port: Int

    (Realtime) UDP or TCP port used by scsynth.

    (Realtime) UDP or TCP port used by scsynth.

    Definition Classes
    ConfigConfigLike
  43. val programPath: String

    The path to scsynth, used when booting a server.

    The path to scsynth, used when booting a server. This can be either a relative path (relating to the JVM's working directory), or an absolute path.

    Definition Classes
    ConfigConfigLike
    See also

    de.sciss.synth.Server#defaultProgramPath

  44. val randomSeeds: Int

    The number of individual random number generators allocated.

    The number of individual random number generators allocated.

    Definition Classes
    ConfigConfigLike
  45. val restrictedPath: Option[String]

    An option to restrict access to files (e.

    An option to restrict access to files (e.g. for loading and saving buffers) to a particular directory. This is a security measure, preventing malicious clients from accessing parts of the harddisk which they shouldn't.

    Definition Classes
    ConfigConfigLike
  46. val sampleRate: Int

    The audio hardware sampling rate to use.

    The audio hardware sampling rate to use. A value of 0 indicates that scsynth should use the current sampling rate of the audio hardware. An explicit setting will make scsynth try to switch the sound card's sample rate if necessary.

    Definition Classes
    ConfigConfigLike
  47. val sessionPassword: Option[String]

    (Realtime) A requires session password when using TCP transport.

    (Realtime) A requires session password when using TCP transport. When using TCP and the password option is set, each client must send the correct password as the first command to the server, otherwise it is rejected.

    Definition Classes
    ConfigConfigLike
  48. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  49. final def toNonRealtimeArgs: List[String]

    Produces a command line for booting scsynth in non-realtime mode.

    Produces a command line for booting scsynth in non-realtime mode.

    Definition Classes
    ConfigLike
  50. final def toRealtimeArgs: List[String]

    Produces a command line for booting scsynth in realtime mode.

    Produces a command line for booting scsynth in realtime mode.

    Definition Classes
    ConfigLike
  51. def toString(): String

    Definition Classes
    Config → AnyRef → Any
  52. val transport: Net

    (Realtime) Open Sound Control transport used by scsynth.

    (Realtime) Open Sound Control transport used by scsynth. (Either of UDP and TCP).

    Definition Classes
    ConfigConfigLike
  53. val verbosity: Int

    The verbosity level of scsynth.

    The verbosity level of scsynth. The standard value is 0, while -1 suppresses informational messages, -2 also suppresses many error messages.

    Definition Classes
    ConfigConfigLike
  54. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  57. val wireBuffers: Int

    The maximum number of concurrent connections between UGens in a single synth.

    The maximum number of concurrent connections between UGens in a single synth. ScalaCollider performs a depth-first topological sorting of the synth defs, so you should not worry too much about this value. It can become important in very heavy channel expansions and mixdown.

    This value will be automatically increased if a more complex def is loaded at startup, but it cannot be increased thereafter without rebooting.

    Definition Classes
    ConfigConfigLike
  58. val zeroConf: Boolean

    (Realtime) Whether to announce scsynth's OSC service via zero conf.

    (Realtime) Whether to announce scsynth's OSC service via zero conf. See Wikipedia for more details.

    Definition Classes
    ConfigConfigLike

Inherited from ConfigLike

Inherited from AnyRef

Inherited from Any

Ungrouped